Uses of Interface
com.hazelcast.map.listener.MapListener
Package
Description
Soak test Map Listener
Provides core API interfaces/classes.
Contains Hazelcast map module classes.
Contains various
MapListener
interfaces.-
Uses of MapListener in com.hazelcast.client.soaktest.listener
-
Uses of MapListener in com.hazelcast.core
Modifier and TypeInterfaceDescriptioninterface
EntryListener<K,
V> Map Entry listener to get notified when a map entry is added, removed, updated, evicted or expired. -
Uses of MapListener in com.hazelcast.map
Modifier and TypeMethodDescriptionIMap.addEntryListener
(MapListener listener, boolean includeValue) Adds aMapListener
for this map.IMap.addEntryListener
(MapListener listener, Predicate<K, V> predicate, boolean includeValue) Adds aMapListener
for this map.IMap.addEntryListener
(MapListener listener, Predicate<K, V> predicate, K key, boolean includeValue) Adds aMapListener
for this map.IMap.addEntryListener
(MapListener listener, K key, boolean includeValue) Adds aMapListener
for this map. -
Uses of MapListener in com.hazelcast.map.listener
Modifier and TypeInterfaceDescriptioninterface
EntryAddedListener<K,
V> Invoked upon addition of an entry.interface
EntryEvictedListener<K,
V> Invoked upon size-based-eviction of an entry.interface
EntryExpiredListener<K,
V> Invoked upon expiration-based removal of an entry.interface
EntryLoadedListener<K,
V> Invoked upon load of an entry.interface
EntryMergedListener<K,
V> Invoked after WAN replicated entry is merged.interface
EntryRemovedListener<K,
V> Invoked upon removal of an entry.interface
EntryUpdatedListener<K,
V> Invoked upon update of an entry.interface
Invoked after all entries are removed byIMap.clear()
.interface
Invoked after all entries are evicted byIMap.evictAll()
.interface
Invoked when owner and all backups of a partition is lost for a specific map.