Click or drag to resize

IEntryAggregator Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An IEntryAggregator represents processing that can be directed to occur against some subset of the entries in an IInvocableCache, resulting in a aggregated result.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IEntryAggregator

The IEntryAggregator type exposes the following members.

Methods
  NameDescription
Public methodAggregate
Process a set of IInvocableCacheEntry objects in order to produce an aggregated result.
Top
Remarks
Common examples of aggregation include functions such as Min(), Max(), Sum() and Avg(). However, the concept of aggregation applies to any process that needs to evaluate a group of entries to come up with a single answer.
See Also