public class ChainedProcessorContext extends Object implements ProcessorContext
A composite context that holds a chain of ProcessorContext
.
Constructor and Description |
---|
ChainedProcessorContext(ProcessorNode processorNode,
List<? extends ProcessorContext> contexts) |
ChainedProcessorContext(ProcessorNode processorNode,
ProcessorContext... contexts) |
Modifier and Type | Method and Description |
---|---|
<T> void |
forward(T input)
Forwards the input to all downstream processors.
|
<T> void |
forward(T input,
String stream)
Forwards the input to downstream processors at specified stream.
|
Set<String> |
getWindowedParentStreams()
Returns the windowed parent streams.
|
boolean |
isWindowed()
Returns true if the processing is in a windowed context and should wait for punctuation before emitting results.
|
public ChainedProcessorContext(ProcessorNode processorNode, List<? extends ProcessorContext> contexts)
public ChainedProcessorContext(ProcessorNode processorNode, ProcessorContext... contexts)
public <T> void forward(T input)
ProcessorContext
Forwards the input to all downstream processors.
forward
in interface ProcessorContext
input
- the inputpublic <T> void forward(T input, String stream)
ProcessorContext
Forwards the input to downstream processors at specified stream.
forward
in interface ProcessorContext
input
- the inputstream
- the stream to forwardpublic boolean isWindowed()
ProcessorContext
Returns true if the processing is in a windowed context and should wait for punctuation before emitting results.
isWindowed
in interface ProcessorContext
public Set<String> getWindowedParentStreams()
ProcessorContext
Returns the windowed parent streams. These are the streams where punctuations arrive.
getWindowedParentStreams
in interface ProcessorContext
Copyright © 2022 The Apache Software Foundation. All rights reserved.