Click or drag to resize

DecimalAverageProcess Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Incorporate one aggregatable value into the result.

Namespace:  Tangosol.Util.Aggregator
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
protected override void Process(
	Object o,
	bool isFinal
)

Parameters

o
Type: SystemObject
The value to incorporate into the aggregated result.
isFinal
Type: SystemBoolean
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