Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Extracts the value from the passed ICacheEntry object.

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

Syntax

C#
public override Object ExtractFromEntry(
	ICacheEntry entry
)

Parameters

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

Return Value

The extracted value

Remarks

This method will always throw a NotSupportedException if called directly by the .NET client application, as its execution is only meaningful within the cluster.

It is expected that this extractor will only be used against POF-encoded binary entries within a remote partitioned cache.

Exceptions

ExceptionCondition
System..::.NotSupportedException Always, as it is expected that this extractor will only be executed within the cluster.

See Also