Adds an entry listener for this map.
Namespace: Hazelcast.CoreAssembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.8.0.1
string AddEntryListener(
IEntryListener<TKey, TValue> listener,
bool includeValue
)
Function AddEntryListener (
listener As IEntryListener(Of TKey, TValue),
includeValue As Boolean
) As String
String^ AddEntryListener(
IEntryListener<TKey, TValue>^ listener,
bool includeValue
)
abstract AddEntryListener :
listener : IEntryListener<'TKey, 'TValue> *
includeValue : bool -> string
Parameters
- listener
- Type: Hazelcast.CoreIEntryListenerTKey, TValue
entry listener - includeValue
- Type: SystemBoolean
true if EntryEvent should contain the value.
Return Value
Type:
Stringreturns registration id
Adds an entry listener for this map. Listener will get notified for all map add/remove/update/evict events.
Reference