Oracle® Coherence .NET API Reference Release 3.6
E15727-01

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.6.0.0 (3.6.0.0)

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