Interface MultiChannelTimeSeriesAggregator.ResultBuilder<O,D,T>
- Type Parameters:
O- the output data typeD- the data point type withinIandOT- the timestamp type withinIandO
public static interface MultiChannelTimeSeriesAggregator.ResultBuilder<O,D,T>
Builds a result from multiple category/data entries.
- Author:
- Holger Eichelberger, SSE
-
Method Summary
-
Method Details
-
addData
Adds an aggregated data series.- Parameters:
category- the category the aggregation was performed fordata- the data collected over various point in times untilMultiChannelTimeSeriesAggregator.CompletionFunction.chunkCompleted(int, Object)timestamp- the aggrgation time stamp
-
build
O build()Builds the data after one or multiple calls toaddData(String, List, Object).- Returns:
- the output instance
-