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

Incorporate one aggregatable value into the result.

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

Syntax

C#
protected override void Process(
	Object o,
	bool isFinal
)

Parameters

o
Type: System..::.Object
The value to incorporate into the aggregated result.
isFinal
Type: System..::.Boolean
true to indicate that the given object is a partial result returned by a parallel aggregator.

Remarks

If the isFinal parameter is true, the given object is a partial result (returned by an individual parallel aggregator) that should be incorporated into the final result; otherwise, the object is a value extracted from an IInvocableCacheEntry.

See Also