IMapTKey, TValueAddEntryListener Method (IEntryListenerTKey, TValue, IPredicate, TKey, Boolean)Hazelcast .Net Client Class Library
Adds an continuous entry listener for this map.

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.6.2.0
Syntax

string AddEntryListener(
	IEntryListener<TKey, TValue> listener,
	IPredicate predicate,
	TKey key,
	bool includeValue
)

Parameters

listener
Type: Hazelcast.CoreIEntryListenerTKey, TValue
entry listener
predicate
Type: Hazelcast.CoreIPredicate
predicate for filtering entries
key
Type: TKey
key to listen
includeValue
Type: SystemBoolean
true if EntryEvent should contain the value.

Return Value

Type: String
returns registration id
Remarks

Adds an continuous entry listener for this map. Listener will get notified for map add/remove/update/evict events filtered by given predicate.
See Also

Reference