Interface ProcessorContext<T>
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- ChainedProcessorContext,- EmittingProcessorContext,- ForwardingProcessorContext
Context information passed to the 
Processor.- 
Method SummaryModifier and TypeMethodDescriptionvoidForwards the input to all downstream processors.voidForwards the input to downstream processors at specified stream.Returns the windowed parent streams.booleanReturns true if the processing is in a windowed context and should wait for punctuation before emitting results.
- 
Method Details- 
forwardForwards the input to all downstream processors.- Parameters:
- input- the input
 
- 
forwardForwards the input to downstream processors at specified stream.- Parameters:
- input- the input
- stream- the stream to forward
 
- 
isWindowedboolean isWindowed()Returns true if the processing is in a windowed context and should wait for punctuation before emitting results.- Returns:
- whether this is a windowed context or not
 
- 
getWindowedParentStreamsReturns the windowed parent streams. These are the streams where punctuations arrive.- Returns:
- the windowed parent streams
 
 
-