Package org.infinispan.eviction.impl
Class EvictionManagerImpl<K,V>
java.lang.Object
org.infinispan.eviction.impl.EvictionManagerImpl<K,V>
- All Implemented Interfaces:
EvictionManager<K,
V>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onEntryEviction
(Map<K, Map.Entry<K, V>> evicted, FlagAffectedCommand command) Handles notifications of evicted entries based on if the command allow themMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.infinispan.eviction.EvictionManager
onEntryEviction
-
Constructor Details
-
EvictionManagerImpl
public EvictionManagerImpl()
-
-
Method Details
-
findCacheMgmtInterceptor
public void findCacheMgmtInterceptor() -
onEntryEviction
public CompletionStage<Void> onEntryEviction(Map<K, Map.Entry<K, V>> evicted, FlagAffectedCommand command) Description copied from interface:EvictionManager
Handles notifications of evicted entries based on if the command allow them- Specified by:
onEntryEviction
in interfaceEvictionManager<K,
V> - Parameters:
evicted
- The entries that were just evictedcommand
- The command that generated the eviction if applicable- Returns:
- stage that when complete the notifications are complete
-