Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Invoke the passed IEntryProcessor against the entries specified by the passed keys, returning the result of the invocation for each.

Namespace: Tangosol.Util
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public virtual IDictionary InvokeAll(
	ICollection keys,
	IEntryProcessor agent
)

Parameters

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

Return Value

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

Implements

IInvocableCache..::..InvokeAll(ICollection, IEntryProcessor)

See Also