IEntryListenerTKey, TValue InterfaceHazelcast .Net Client Class Library
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

  NameDescription
Public methodEntryAdded
Invoked when an entry is added.
(Inherited from EntryAddedListenerTKey, TValue.)
Public methodEntryEvicted
Invoked when an entry is evicted.
(Inherited from EntryEvictedListenerTKey, TValue.)
Public methodEntryRemoved
Invoked when an entry is removed.
(Inherited from EntryRemovedListenerTKey, TValue.)
Public methodEntryUpdated
Invoked when an entry is updated.
(Inherited from EntryUpdatedListenerTKey, TValue.)
Public methodMapCleared
Invoked when all entries are removed.
(Inherited from MapClearedListener.)
Public methodMapEvicted
Invoked when all entries are evicted.
(Inherited from MapEvictedListener.)
Top
Remarks

Map Entry listener to get notified when a map entry is added, removed, updated or evicted.
See Also

Reference