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

ExtractorProcessor is an IEntryProcessor implementations that extracts a value from an object cached in an IInvocableCache.

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

Syntax

C#
public class ExtractorProcessor : AbstractProcessor, 
	IPortableObject

Remarks

A common usage pattern is:
            cache.Invoke(key, new ExtractorProcessor(extractor));
            
which is functionally equivalent to the following operation:
            extractor.Extract(cache[key]);
            

Inheritance Hierarchy

System..::.Object
  Tangosol.Util.Processor..::.AbstractProcessor
    Tangosol.Util.Processor..::.ExtractorProcessor

See Also