| IMapTKey, TValueExecuteOnKeys Method |
Applies the user defined EntryProcessor to the entries mapped by the collection of keys.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax IDictionary<TKey, Object> ExecuteOnKeys(
ISet<TKey> keys,
IEntryProcessor entryProcessor
)
Function ExecuteOnKeys (
keys As ISet(Of TKey),
entryProcessor As IEntryProcessor
) As IDictionary(Of TKey, Object)
IDictionary<TKey, Object^>^ ExecuteOnKeys(
ISet<TKey>^ keys,
IEntryProcessor^ entryProcessor
)
abstract ExecuteOnKeys :
keys : ISet<'TKey> *
entryProcessor : IEntryProcessor -> IDictionary<'TKey, Object>
Parameters
- keys
- Type: System.Collections.GenericISetTKey
keys to process - entryProcessor
- Type: Hazelcast.MapIEntryProcessor
The user defined IEntryProcessor. This object must have a hazelcast serializable
EntryProcessor counterpart registered on server side with the actual
org.hazelcast.map.EntryProcessor implementation.
Return Value
Type:
IDictionaryTKey,
Objectthe results mapped by each key in the collection.
See Also