public class ForwardingProcessorContext extends Object implements ProcessorContext
A context that emits the results to downstream processors which are in the same bolt.
Constructor and Description |
---|
ForwardingProcessorContext(ProcessorNode processorNode,
org.apache.storm.shade.com.google.common.collect.Multimap<String,ProcessorNode> streamToChildren) |
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 ForwardingProcessorContext(ProcessorNode processorNode, org.apache.storm.shade.com.google.common.collect.Multimap<String,ProcessorNode> streamToChildren)
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.