Click or drag to resize

CompositeAggregatorCreateInstance Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Create an instance of CompositeAggregator based on a specified IEntryAggregator array.

Namespace:  Tangosol.Util.Aggregator
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static CompositeAggregator CreateInstance(
	IEntryAggregator[] aggregators
)

Parameters

aggregators
Type: Tangosol.Net.CacheIEntryAggregator
An array of IEntryAggregator objects; must contain not less than two aggregators.

Return Value

Type: CompositeAggregator
CompositeAggregator instance.
Remarks

If all the aggregators in the specified array are instances of IParallelAwareAggregator, then a parallel-aware instance of the CompositeAggregator will be created.

If at least one of the specified aggregator is not parallel-aware, then the resulting CompositeAggregator will not be parallel-aware and could be ill-suited for aggregations run against large partitioned caches.

See Also