Package com.hazelcast.map.listener
Interface MapListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Subinterfaces:
EntryAddedListener<K,V>
,EntryEvictedListener<K,V>
,EntryExpiredListener<K,V>
,EntryListener<K,V>
,EntryLoadedListener<K,V>
,EntryMergedListener<K,V>
,EntryRemovedListener<K,V>
,EntryUpdatedListener<K,V>
,EventLostListener
,MapClearedListener
,MapEvictedListener
,MapPartitionLostListener
- All Known Implementing Classes:
ConsoleApp
,EntryAdapter
public interface MapListener extends java.util.EventListener
A marker interface which is used to get notified upon a map or an entry event.
Specifically:
-
A map event is fired as a result of map-wide operations. This
kind of operations possibly run on multiple map entries, like
e.g.
EntryEventType.CLEAR_ALL
.EntryEventType.EVICT_ALL
. -
An entry event is fired after an operation on a single entry
like e.g.
EntryEventType.ADDED
,EntryEventType.UPDATED
An implementer of this interface should extend one of its sub-interfaces to receive a corresponding event.