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

Abstract aggregator that processes values extracted from a set of entries in a cache, with knowledge of how to compare those values.

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

Syntax

C#
public abstract class AbstractComparableAggregator : AbstractAggregator

Remarks

There are two way to use the AbstractComparableAggregator:
  • All the extracted objects must implement IComparable, or
  • The AbstractComparableAggregator has to be provided with an IComparer object.
If the set of entries passed to Aggregate is empty, a null result is returned.

Inheritance Hierarchy

System..::.Object
  Tangosol.Util.Aggregator..::.AbstractAggregator
    Tangosol.Util.Aggregator..::.AbstractComparableAggregator
      Tangosol.Util.Aggregator..::.ComparableMax
      Tangosol.Util.Aggregator..::.ComparableMin

See Also