Click or drag to resize

IMapTKey, TValueAddEntryListener Method (MapListener, 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.12.1
Syntax
string AddEntryListener(
	MapListener listener,
	TKey key,
	bool includeValue
)

Parameters

listener
Type: Hazelcast.CoreMapListener
MapListener for this map
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 or the key is null.
Remarks

Warning:

This method uses GetHashCode and Equals of binary form of the key, not the actual implementations of GetHashCode and Equals defined in key's class.
See Also