Class PersistedAggregationResultsProcessor
- java.lang.Object
-
- io.siddhi.core.aggregation.persistedaggregation.config.PersistedAggregationResultsProcessor
-
-
Constructor Summary
Constructors Constructor Description PersistedAggregationResultsProcessor(io.siddhi.query.api.aggregation.TimePeriod.Duration duration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProcessorgetNextProcessor()Get next processor element in the processor chain.voidprocess(ComplexEventChunk complexEventChunk)Process the handed StreamEventvoidprocess(List<ComplexEventChunk> complexEventChunks)Process the handed StreamEventvoidsetNextProcessor(Processor processor)Set next processor element in processor chainvoidsetToLast(Processor processor)Set as the last element of the processor chain
-
-
-
Method Detail
-
process
public void process(ComplexEventChunk complexEventChunk)
Description copied from interface:ProcessorProcess the handed StreamEvent
-
process
public void process(List<ComplexEventChunk> complexEventChunks)
Description copied from interface:ProcessorProcess the handed StreamEvent
-
getNextProcessor
public Processor getNextProcessor()
Description copied from interface:ProcessorGet next processor element in the processor chain. Processed event should be sent to next processor- Specified by:
getNextProcessorin interfaceProcessor- Returns:
- next processor
-
setNextProcessor
public void setNextProcessor(Processor processor)
Description copied from interface:ProcessorSet next processor element in processor chain- Specified by:
setNextProcessorin interfaceProcessor- Parameters:
processor- Processor to be set as next element of processor chain
-
-