Class FloatSumBufferAggregator
java.lang.Object
org.apache.druid.query.aggregation.SimpleFloatBufferAggregator
org.apache.druid.query.aggregation.FloatSumBufferAggregator
- All Implemented Interfaces:
BufferAggregator,HotLoopCallee
-
Method Summary
Modifier and TypeMethodDescriptionvoidaggregate(ByteBuffer buf, int position, float value) voidinit(ByteBuffer buf, int position) Initializes the buffer location Implementations of this method must initialize the byte buffer at the given position Implementations must not change the position, limit or mark of the given buffer This method must not exceed the number of bytes returned byAggregatorFactory.getMaxIntermediateSizeWithNulls()in the correspondingAggregatorFactoryMethods inherited from class org.apache.druid.query.aggregation.SimpleFloatBufferAggregator
aggregate, close, get, getDouble, getFloat, getLong, inspectRuntimeShapeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.druid.query.aggregation.BufferAggregator
isNull, relocate
-
Method Details
-
aggregate
- Specified by:
aggregatein classSimpleFloatBufferAggregator
-
init
Description copied from interface:BufferAggregatorInitializes the buffer location Implementations of this method must initialize the byte buffer at the given position Implementations must not change the position, limit or mark of the given buffer This method must not exceed the number of bytes returned byAggregatorFactory.getMaxIntermediateSizeWithNulls()in the correspondingAggregatorFactory- Parameters:
buf- byte buffer to initializeposition- offset within the byte buffer for initialization
-