Package com.hazelcast.map.listener
Interface MapEvictedListener
-
- All Superinterfaces:
java.util.EventListener
,MapListener
- All Known Subinterfaces:
EntryListener<K,V>
- All Known Implementing Classes:
ConsoleApp
,EntryAdapter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface MapEvictedListener extends MapListener
Invoked after all entries are evicted byIMap.evictAll()
.- Since:
- 3.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
mapEvicted(MapEvent event)
Invoked when all entries are evicted byIMap.evictAll()
.
-
-
-
Method Detail
-
mapEvicted
void mapEvicted(MapEvent event)
Invoked when all entries are evicted byIMap.evictAll()
.- Parameters:
event
- the map event invoked when all entries are evicted byIMap.evictAll()
-
-