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> 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 the
IMap
interface. Events will not fire, for example, for an entry
that comes into the Map via the MapLoader 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
entryAddedMethods inherited from interface com.hazelcast.map.listener.EntryEvictedListener
entryEvictedMethods inherited from interface com.hazelcast.map.listener.EntryExpiredListener
entryExpiredMethods inherited from interface com.hazelcast.map.listener.EntryRemovedListener
entryRemovedMethods inherited from interface com.hazelcast.map.listener.EntryUpdatedListener
entryUpdatedMethods inherited from interface com.hazelcast.map.listener.MapClearedListener
mapClearedMethods inherited from interface com.hazelcast.map.listener.MapEvictedListener
mapEvicted