Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.1.3.0.0)
E47892-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.1.3.0 (12.1.3.0)

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 dictionary containing the results of invoking the IEntryProcessor against each of the specified keys.

Implements

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

See Also