public interface AggregateCombiner<T> extends ColumnValueSelector<T>
IndexMerger).
The state of the implementations of this interface is an aggregation value (either a primitive or an object), that
could be queried via ColumnValueSelector's methods. Before reset(io.druid.segment.ColumnValueSelector) is ever called on an
AggregateCombiner, it's state is undefined and ColumnValueSelector's methods could return something random,
or null, or throw an exception.
This interface would probably better be called "AggregateFolder", but somebody may confuse it with "folder" as
"directory" synonym.| Modifier and Type | Method and Description |
|---|---|
void |
fold(ColumnValueSelector selector)
Folds this AggregateCombiner's state value with the value of the given selector and saves it in this
AggregateCombiner's state, e.
|
void |
reset(ColumnValueSelector selector)
Resets this AggregateCombiner's state value to the value of the given selector, e.
|
classOfObject, getDouble, getFloat, getLong, getObjectvoid reset(ColumnValueSelector selector)
ObjectColumnSelector, the object returned from ColumnValueSelector.getObject() must not be modified, and must not become a subject for modification
during subsequent fold(io.druid.segment.ColumnValueSelector) calls.void fold(ColumnValueSelector selector)
aggregatorFactory.combine(combiner.get*(), selector.get*()) call.
Unlike AggregatorFactory.combine(java.lang.Object, java.lang.Object), if the selector is an ObjectColumnSelector, the
object returned from ColumnValueSelector.getObject() must not be modified, and must not become
a subject for modification during subsequent fold() calls.
Since the state of AggregateCombiner is undefined before reset(io.druid.segment.ColumnValueSelector) is ever called on it, the effects of
calling fold() are also undefined in this case.Copyright © 2011–2017. All rights reserved.