Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

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: 3.7.1.23 (3.7.1.23)

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