public class FixedSumAggregator<I> extends AbstractAggregator<I,Long>
Constructor and Description |
---|
FixedSumAggregator() |
FixedSumAggregator(String attributePath) |
Modifier and Type | Method and Description |
---|---|
void |
accumulate(I entry)
Accumulates the given entries.
|
Long |
aggregate()
Returns the result of the aggregation.
|
void |
combine(Aggregator aggregator)
Incorporates the intermediary result of the given aggregator to this instance of the aggregator.
|
extract
onAccumulationFinished, onCombinationFinished
public FixedSumAggregator()
public FixedSumAggregator(String attributePath)
public void accumulate(I entry)
Aggregator
accumulate
in class Aggregator<I,Long>
entry
- input to accumulate.public void combine(Aggregator aggregator)
Aggregator
combine
in class Aggregator<I,Long>
aggregator
- aggregator providing intermediary results to be combined into the results of this aggregator.
The given aggregator has to be of the same class as the one that the method is being called on.public Long aggregate()
Aggregator
aggregate
in class Aggregator<I,Long>
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.