| IMapTKey, TValueExecuteOnEntries Method (IEntryProcessor, IPredicate) |
Applies the user defined EntryProcessor to the entries in the map which satisfies provided predicate.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax IDictionary<TKey, Object> ExecuteOnEntries(
IEntryProcessor entryProcessor,
IPredicate predicate
)
Function ExecuteOnEntries (
entryProcessor As IEntryProcessor,
predicate As IPredicate
) As IDictionary(Of TKey, Object)
IDictionary<TKey, Object^>^ ExecuteOnEntries(
IEntryProcessor^ entryProcessor,
IPredicate^ predicate
)
abstract ExecuteOnEntries :
entryProcessor : IEntryProcessor *
predicate : IPredicate -> IDictionary<'TKey, Object>
Parameters
- 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.
- predicate
- Type: Hazelcast.CoreIPredicate
predicate for filtering the entries on server side
Return Value
Type:
IDictionaryTKey,
Objectthe results mapped by each key in the map
See Also