Class BatchCoBroadcastWithNonKeyedOperator<IN1,IN2,OUT>

Type Parameters:
IN1 - The input type of the regular (non-broadcast) side.
IN2 - The input type of the broadcast side.
OUT - The output type of the operator.
All Implemented Interfaces:
Serializable, org.apache.flink.api.common.state.CheckpointListener, BoundedMultiInput, InputSelectable, KeyContext, KeyContextHandler, org.apache.flink.streaming.api.operators.OutputTypeConfigurable<OUT>, StreamOperator<OUT>, StreamOperatorStateHandler.CheckpointedStreamOperator, TwoInputStreamOperator<IN1,IN2,OUT>, UserFunctionProvider<BroadcastProcessFunction<IN1,IN2,OUT>>, YieldingOperator<OUT>

@Internal public class BatchCoBroadcastWithNonKeyedOperator<IN1,IN2,OUT> extends CoBroadcastWithNonKeyedOperator<IN1,IN2,OUT> implements BoundedMultiInput, InputSelectable
A TwoInputStreamOperator for executing BroadcastProcessFunctions in RuntimeExecutionMode.BATCH execution mode.

Compared to CoBroadcastWithNonKeyedOperator this uses BoundedMultiInput and InputSelectable to enforce the requirement that the broadcast side is processed before the regular input.

See Also: