Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-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: 12.2.1.4000 (12.2.1.4000)

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 cache.
agent
Type: Tangosol.Net.Cache..::..IEntryProcessor
The IEntryProcessor to use to process the specified keys.

Return Value

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

Implements

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

Remarks

The operation always executes against the back cache.

See Also