Oracle® Coherence .NET API Reference Release 3.6.1
E18812-01

Perform an aggregating operation against the entries specified by the passed keys.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 3.6.1.0 (3.6.1.0)

Syntax

C#
public virtual Object Aggregate(
	ICollection keys,
	IEntryAggregator agent
)

Parameters

keys
Type: System.Collections..::.ICollection
The collection of keys that specify the entries within this cache to aggregate across.
agent
Type: Tangosol.Net.Cache..::.IEntryAggregator
The IEntryAggregator that is used to aggregate across the specified entries of this cache.

Return Value

The result of the aggregation.

Implements

IInvocableCache..::.Aggregate(ICollection, IEntryAggregator)

Remarks

The operation always executes against the back cache.

See Also