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:
ClientConsoleApp, 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.

See Also:
IMap.addEntryListener(com.hazelcast.map.listener.MapListener, boolean), MapListener