Click or drag to resize

InvocableCacheHelper.InvokeLocked Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Invoke the passed IEntryProcessor against the specified IInvocableCacheEntry.

Namespace:  Tangosol.Net.Cache.Support
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static Object InvokeLocked(
	IConcurrentCache cache,
	IInvocableCacheEntry entry,
	IEntryProcessor agent
)

Parameters

cache
Type: Tangosol.Net.Cache.IConcurrentCache
The IConcurrentCache that the IEntryProcessor works against.
entry
Type: Tangosol.Net.Cache.IInvocableCacheEntry
The IInvocableCacheEntry 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

Type: Object
The result of the invocation as returned from the IEntryProcessor.
Remarks
The invocation is made thread safe by locking the corresponding key on the cache.
See Also