Click or drag to resize

ChainedExtractorExtractFromEntry Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Extract the value from the passed entry.

Namespace:  Tangosol.Util.Extractor
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public override Object ExtractFromEntry(
	ICacheEntry entry
)

Parameters

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

Return Value

Type: Object
The extracted value
Remarks
The underlying extractors are applied sequentially, so a result of a previous extractor serves as a target object for a next one. A value of
null
prevents any further extractions and is returned immediately.
See Also