Click or drag to resize

InvocableCacheHelperInvokeLocked Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Invoke the passed IEntryProcessor against the specified IInvocableCacheEntry.

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

Parameters

cache
Type: Tangosol.Net.CacheIConcurrentCache
The IConcurrentCache that the IEntryProcessor works against.
entry
Type: Tangosol.Net.CacheIInvocableCacheEntry
The IInvocableCacheEntry to process; it is not required to exist within the cache.
agent
Type: Tangosol.Net.CacheIEntryProcessor
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