Adds an entry listener for this map.
Namespace: Hazelcast.CoreAssembly: HazelcastClient3x (in HazelcastClient3x.dll) Version: 3.3.0.12
string AddEntryListener(
IEntryListener<K, V> listener,
bool includeValue
)
Function AddEntryListener (
listener As IEntryListener(Of K, V),
includeValue As Boolean
) As String
String^ AddEntryListener(
IEntryListener<K, V>^ listener,
bool includeValue
)
abstract AddEntryListener :
listener : IEntryListener<'K, 'V> *
includeValue : bool -> string
Parameters
- listener
- Type: Hazelcast.CoreIEntryListenerK, V
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