Click or drag to resize

IMapTKey, TValueAddEntryListener Method (MapListener, IPredicate, TKey, Boolean)

Adds a MapListener for the specified key, you should implement a corresponding MapListener sub-interface for that event.

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax
string AddEntryListener(
	MapListener listener,
	IPredicate predicate,
	TKey key,
	bool includeValue
)

Parameters

listener
Type: Hazelcast.CoreMapListener
MapListener for this map
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
a registration Id which is used as a key to remove the listener.
Exceptions
ExceptionCondition
ArgumentNullExceptionthe specified listener, predicate or the key is null.
Remarks
Adds a continuous MapListener for this map. Listener will get notified for registered map events filtered by given predicate.
See Also