Uses of Interface
org.apache.flink.datastream.api.extension.window.context.TwoInputWindowContext
Packages that use TwoInputWindowContext
-
Uses of TwoInputWindowContext in org.apache.flink.datastream.api.extension.window.function
Methods in org.apache.flink.datastream.api.extension.window.function with parameters of type TwoInputWindowContextModifier and TypeMethodDescriptiondefault voidTwoInputNonBroadcastWindowStreamProcessFunction.onClear(Collector<OUT> output, PartitionedContext<OUT> ctx, TwoInputWindowContext<IN1, IN2> windowContext) Callback when a window is about to be cleaned up.default voidTwoInputNonBroadcastWindowStreamProcessFunction.onRecord1(IN1 record, Collector<OUT> output, PartitionedContext<OUT> ctx, TwoInputWindowContext<IN1, IN2> windowContext) This method will be invoked when a record is received from input1.default voidTwoInputNonBroadcastWindowStreamProcessFunction.onRecord2(IN2 record, Collector<OUT> output, PartitionedContext<OUT> ctx, TwoInputWindowContext<IN1, IN2> windowContext) This method will be invoked when a record is received from input2.voidTwoInputNonBroadcastWindowStreamProcessFunction.onTrigger(Collector<OUT> output, PartitionedContext<OUT> ctx, TwoInputWindowContext<IN1, IN2> windowContext) This method will be invoked when the Window is triggered, you can obtain all the input records in the Window bygetAllRecords1()andgetAllRecords2().