Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Composite IValueExtractor implementation based on an array of extractors.

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

Syntax

C#
public class MultiExtractor : AbstractCompositeExtractor

Remarks

All extractors in the array are applied to the same target object and the result of the extraction is an IList of extracted values.

Common scenarios for using the MultiExtractor involve the DistinctValues or GroupAggregator aggregators, that allow clients to collect all distinct combinations of a given set of attributes or collect and run additional aggregation against the corresponding groups of entries.

Inheritance Hierarchy

System..::..Object
  Tangosol.Util.Extractor..::..AbstractExtractor
    Tangosol.Util.Extractor..::..AbstractCompositeExtractor
      Tangosol.Util.Extractor..::..MultiExtractor

See Also