default void |
TwoInputBroadcastStreamProcessFunction.endBroadcastInput(NonPartitionedContext<OUT> ctx) |
This is a life-cycle method indicates that this function will no longer receive any data from
the broadcast input.
|
default void |
TwoInputNonBroadcastStreamProcessFunction.endFirstInput(NonPartitionedContext<OUT> ctx) |
This is a life-cycle method indicates that this function will no longer receive any data from
the first input.
|
default void |
OneInputStreamProcessFunction.endInput(NonPartitionedContext<OUT> ctx) |
This is a life-cycle method indicates that this function will no longer receive any data from
the input.
|
default void |
TwoInputBroadcastStreamProcessFunction.endNonBroadcastInput(NonPartitionedContext<OUT> ctx) |
This is a life-cycle method indicates that this function will no longer receive any data from
the non-broadcast input.
|
default void |
TwoInputNonBroadcastStreamProcessFunction.endSecondInput(NonPartitionedContext<OUT> ctx) |
This is a life-cycle method indicates that this function will no longer receive any data from
the second input.
|
default org.apache.flink.api.common.watermark.WatermarkHandlingResult |
OneInputStreamProcessFunction.onWatermark(org.apache.flink.api.common.watermark.Watermark watermark,
Collector<OUT> output,
NonPartitionedContext<OUT> ctx) |
Callback function when receive watermark.
|
default org.apache.flink.api.common.watermark.WatermarkHandlingResult |
TwoInputBroadcastStreamProcessFunction.onWatermarkFromBroadcastInput(org.apache.flink.api.common.watermark.Watermark watermark,
Collector<OUT> output,
NonPartitionedContext<OUT> ctx) |
Callback function when receive the watermark from broadcast input.
|
default org.apache.flink.api.common.watermark.WatermarkHandlingResult |
TwoInputNonBroadcastStreamProcessFunction.onWatermarkFromFirstInput(org.apache.flink.api.common.watermark.Watermark watermark,
Collector<OUT> output,
NonPartitionedContext<OUT> ctx) |
Callback function when receive the watermark from the first input.
|
default org.apache.flink.api.common.watermark.WatermarkHandlingResult |
TwoInputBroadcastStreamProcessFunction.onWatermarkFromNonBroadcastInput(org.apache.flink.api.common.watermark.Watermark watermark,
Collector<OUT> output,
NonPartitionedContext<OUT> ctx) |
Callback function when receive the watermark from non-broadcast input.
|
default org.apache.flink.api.common.watermark.WatermarkHandlingResult |
TwoInputNonBroadcastStreamProcessFunction.onWatermarkFromSecondInput(org.apache.flink.api.common.watermark.Watermark watermark,
Collector<OUT> output,
NonPartitionedContext<OUT> ctx) |
Callback function when receive the watermark from the second input.
|
default void |
OneInputStreamProcessFunction.open(NonPartitionedContext<OUT> ctx) |
Initialization method for the function.
|
default void |
TwoInputBroadcastStreamProcessFunction.open(NonPartitionedContext<OUT> ctx) |
Initialization method for the function.
|
default void |
TwoInputNonBroadcastStreamProcessFunction.open(NonPartitionedContext<OUT> ctx) |
Initialization method for the function.
|
void |
TwoInputBroadcastStreamProcessFunction.processRecordFromBroadcastInput(IN2 record,
NonPartitionedContext<OUT> ctx) |
Process record from broadcast input.
|