Uses of Interface
org.apache.flink.datastream.api.extension.window.context.OneInputWindowContext
Packages that use OneInputWindowContext
-
Uses of OneInputWindowContext in org.apache.flink.datastream.api.extension.window.function
Methods in org.apache.flink.datastream.api.extension.window.function with parameters of type OneInputWindowContextModifier and TypeMethodDescriptiondefault voidOneInputWindowStreamProcessFunction.onClear(Collector<OUT> output, PartitionedContext<OUT> ctx, OneInputWindowContext<IN> windowContext) Callback when a window is about to be cleaned up.default voidTwoOutputWindowStreamProcessFunction.onClear(Collector<OUT1> output1, Collector<OUT2> output2, TwoOutputPartitionedContext<OUT1, OUT2> ctx, OneInputWindowContext<IN> windowContext) Callback when a window is about to be cleaned up.default voidOneInputWindowStreamProcessFunction.onRecord(IN record, Collector<OUT> output, PartitionedContext<OUT> ctx, OneInputWindowContext<IN> windowContext) This method will be invoked when a record is received.default voidTwoOutputWindowStreamProcessFunction.onRecord(IN record, Collector<OUT1> output1, Collector<OUT2> output2, TwoOutputPartitionedContext<OUT1, OUT2> ctx, OneInputWindowContext<IN> windowContext) This method will be invoked when a record is received.voidOneInputWindowStreamProcessFunction.onTrigger(Collector<OUT> output, PartitionedContext<OUT> ctx, OneInputWindowContext<IN> windowContext) This method will be invoked when the Window is triggered, you can obtain all the input records in the Window bygetAllRecords().voidTwoOutputWindowStreamProcessFunction.onTrigger(Collector<OUT1> output1, Collector<OUT2> output2, TwoOutputPartitionedContext<OUT1, OUT2> ctx, OneInputWindowContext<IN> windowContext) This method will be invoked when the Window is triggered, you can obtain all the input records in the Window bygetAllRecords().