Click or drag to resize

ContinuousQueryCacheInvokeAll Method (ICollection, IEntryProcessor)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Invoke the passed IEntryProcessor against the entries specified by the passed keys, returning the result of the invocation for each.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public virtual IDictionary InvokeAll(
	ICollection keys,
	IEntryProcessor agent
)

Parameters

keys
Type: System.CollectionsICollection
The keys to process; these keys are not required to exist within the dictionary.
agent
Type: Tangosol.Net.CacheIEntryProcessor
The IEntryProcessor to use to process the specified keys.

Return Value

Type: IDictionary
A dictionary containing the results of invoking the IEntryProcessor against each of the specified keys.

Implements

IInvocableCacheInvokeAll(ICollection, IEntryProcessor)
See Also