public class AggregateProcessor<T,A,R> extends Object implements BatchProcessor
Modifier and Type | Field and Description |
---|---|
protected ProcessorContext |
context |
Constructor and Description |
---|
AggregateProcessor(CombinerAggregator<T,A,R> aggregator) |
AggregateProcessor(CombinerAggregator<T,A,R> aggregator,
boolean emitAggregate) |
Modifier and Type | Method and Description |
---|---|
void |
execute(T input)
Execute some operation on the input value.
|
void |
execute(T input,
String streamId)
Executes some operations on the input and possibly emits some results.
|
void |
finish()
This is triggered to signal the end of the current batch of values.
|
void |
init(ProcessorContext context)
Initializes the processor.
|
protected <R> void |
mayBeForwardAggUpdate(Supplier<R> result)
Forwards the result update to downstream processors.
|
void |
punctuate(String stream)
Punctuation marks end of a batch which can be used to compute and pass the results of one stage in the pipeline to the next.
|
String |
toString() |
protected ProcessorContext context
public AggregateProcessor(CombinerAggregator<T,A,R> aggregator)
public AggregateProcessor(CombinerAggregator<T,A,R> aggregator, boolean emitAggregate)
public void execute(T input)
input
- the inputpublic void finish()
public void init(ProcessorContext context)
public void execute(T input, String streamId)
BaseProcessor.execute(Object)
instead.public void punctuate(String stream)
protected final <R> void mayBeForwardAggUpdate(Supplier<R> result)
R
- the result typeresult
- the result functionCopyright © 2023 The Apache Software Foundation. All rights reserved.