Package com.hazelcast.core
Interface EntryListener<K,V>
-
- Type Parameters:
K
- the type of key.V
- the type of value.
- All Superinterfaces:
EntryAddedListener<K,V>
,EntryEvictedListener<K,V>
,EntryExpiredListener<K,V>
,EntryRemovedListener<K,V>
,EntryUpdatedListener<K,V>
,java.util.EventListener
,MapClearedListener
,MapEvictedListener
,MapListener
- All Known Implementing Classes:
ConsoleApp
,EntryAdapter
public interface EntryListener<K,V> extends EntryAddedListener<K,V>, EntryUpdatedListener<K,V>, EntryRemovedListener<K,V>, EntryEvictedListener<K,V>, EntryExpiredListener<K,V>, MapClearedListener, MapEvictedListener
Map Entry listener to get notified when a map entry is added, removed, updated, evicted or expired. Events will fire as a result of operations carried out via theIMap
interface. Events will not fire, for example, for an entry that comes into the Map via theMapLoader
lifecycle.This interface is here for backward compatibility reasons. For a most appropriate alternative please use/check
MapListener
interface.
-
-
Method Summary
-
Methods inherited from interface com.hazelcast.map.listener.EntryAddedListener
entryAdded
-
Methods inherited from interface com.hazelcast.map.listener.EntryEvictedListener
entryEvicted
-
Methods inherited from interface com.hazelcast.map.listener.EntryExpiredListener
entryExpired
-
Methods inherited from interface com.hazelcast.map.listener.EntryRemovedListener
entryRemoved
-
Methods inherited from interface com.hazelcast.map.listener.EntryUpdatedListener
entryUpdated
-
Methods inherited from interface com.hazelcast.map.listener.MapClearedListener
mapCleared
-
Methods inherited from interface com.hazelcast.map.listener.MapEvictedListener
mapEvicted
-
-