Map Entry listener to get notified when a map entry
is added, removed, updated or evicted.
Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.1
Syntax
public interface IEntryListener<TKey, TValue> : EntryAddedListener<TKey, TValue>, EntryUpdatedListener<TKey, TValue>, EntryRemovedListener<TKey, TValue>, EntryEvictedListener<TKey, TValue>, MapClearedListener, MapEvictedListener, MapListener, IEventListener
Type Parameters
- TKey
- the type of key
- TValue
- the type of value
The IEntryListenerTKey, TValue type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() | EntryAdded | Invoked when an entry is added. (Inherited from EntryAddedListenerTKey, TValue.) |
![]() | EntryEvicted | Invoked when an entry is evicted. (Inherited from EntryEvictedListenerTKey, TValue.) |
![]() | EntryRemoved | Invoked when an entry is removed. (Inherited from EntryRemovedListenerTKey, TValue.) |
![]() | EntryUpdated | Invoked when an entry is updated. (Inherited from EntryUpdatedListenerTKey, TValue.) |
![]() | MapCleared | Invoked when all entries are removed. (Inherited from MapClearedListener.) |
![]() | MapEvicted | Invoked when all entries are evicted. (Inherited from MapEvictedListener.) |
Remarks
See Also