IMapTKey, TValueExecuteOnEntries Method (IEntryProcessor, IPredicate)Hazelcast .Net Client Class Library
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.9
Syntax

IDictionary<TKey, Object> ExecuteOnEntries(
	IEntryProcessor entryProcessor,
	IPredicate predicate
)

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, Object
the results mapped by each key in the map
See Also

Reference