AbstractExtractorExtractFromEntry Method |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-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: 14.1.1.14 (14.1.1.14)
Syntaxpublic virtual Object ExtractFromEntry(
ICacheEntry entry
)
Parameters
- entry
- Type: Tangosol.Net.CacheICacheEntry
An Entry object to extract a desired value from
Return Value
Type:
ObjectThe 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