public class MinAggregator<I,R extends Comparable> extends AbstractAggregator<I,R>
Constructor and Description |
---|
MinAggregator() |
MinAggregator(String attributePath) |
Modifier and Type | Method and Description |
---|---|
void |
accumulate(I entry)
Accumulates the given entries.
|
R |
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 MinAggregator()
public MinAggregator(String attributePath)
public void accumulate(I entry)
Aggregator
accumulate
in class Aggregator<I,R extends Comparable>
entry
- input to accumulate.public void combine(Aggregator aggregator)
Aggregator
combine
in class Aggregator<I,R extends Comparable>
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 R aggregate()
Aggregator
aggregate
in class Aggregator<I,R extends Comparable>
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.