Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.1.0)
E69639-01
Invoke the passed IEntryProcessor against the entry specified by the passed key, returning the result of the invocation.

Namespace: Tangosol.Net.Cache
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.1000 (12.2.1.1000)

Syntax

C#
public virtual Object Invoke(
	Object key,
	IEntryProcessor agent
)

Parameters

key
Type: System..::..Object
The key to process; it is not required to exist within the cache.
agent
Type: Tangosol.Net.Cache..::..IEntryProcessor
The IEntryProcessor to use to process the specified key.

Return Value

The result of the invocation as returned from the IEntryProcessor.

Implements

IInvocableCache..::..Invoke(Object, IEntryProcessor)

Remarks

The operation always executes against the back cache.

See Also