Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Extract the value from the passed Entry object. The returned value should follow the conventions outlined in the Extract(Object) method.

Namespace: Tangosol.Util.Extractor
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public virtual Object ExtractFromEntry(
	ICacheEntry entry
)

Parameters

entry
Type: Tangosol.Net.Cache..::..ICacheEntry
An Entry object to extract a desired value from

Return Value

The extracted value

Remarks

By overriding this method, an extractor implementation is able to extract a desired value using all available information on the corresponding ICacheEntry object and is intended to be used in advanced custom scenarios, when application code needs to look at both key and value at the same time or can make some very specific assumptions regarding to the implementation details of the underlying Entry object.

See Also