Click or drag to resize

IInvocableCacheEntry Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An IInvocableCacheEntry contains additional information and exposes additional operations that the basic ICacheEntry does not.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IInvocableCacheEntry : ICacheEntry

The IInvocableCacheEntry type exposes the following members.

Properties
  NameDescription
Public propertyIsPresent
Determine if this entry exists in the cache.
Public propertyKey
Gets the key corresponding to this entry.
Public propertyValue
Gets or sets the value corresponding to this entry.
Top
Methods
  NameDescription
Public methodExtract
Extract a value out of the entry's value.
Public methodRemove
Remove this entry from the cache if it is present in the cache.
Public methodSetValue
Store the value corresponding to this entry.
Public methodUpdate
Update the entry's value.
Top
Remarks
It allows non-existent entries to be represented, thus allowing their optional creation. It allows existent entries to be removed from the cache. It supports a number of optimizations that can ultimately be mapped through to indexes and other data structures of the underlying dictionary.
See Also