Uses of Interface
org.apache.flink.datastream.api.function.OneInputStreamProcessFunction
Packages that use OneInputStreamProcessFunction
Package
Description
-
Uses of OneInputStreamProcessFunction in org.apache.flink.datastream.api.builtin
Methods in org.apache.flink.datastream.api.builtin that return OneInputStreamProcessFunctionModifier and TypeMethodDescriptionstatic <IN,OUT> OneInputStreamProcessFunction<IN, OUT> BuiltinFuncs.window(WindowStrategy windowStrategy, OneInputWindowStreamProcessFunction<IN, OUT> windowProcessFunction) Wrap the WindowStrategy and OneInputWindowStreamProcessFunction within a OneInputStreamProcessFunction to perform the window operation. -
Uses of OneInputStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime
Methods in org.apache.flink.datastream.api.extension.eventtime that return OneInputStreamProcessFunctionModifier and TypeMethodDescriptionstatic <IN,OUT> OneInputStreamProcessFunction<IN, OUT> EventTimeExtension.wrapProcessFunction(OneInputEventTimeStreamProcessFunction<IN, OUT> processFunction) Wrap the user-definedOneInputEventTimeStreamProcessFunction, which will provide related components such asEventTimeManagerand declare the necessary built-in state required for the Timer, etc. -
Uses of OneInputStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime.function
Subinterfaces of OneInputStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime.functionModifier and TypeInterfaceDescriptioninterfaceTheOneInputStreamProcessFunctionthat extends with event time support. -
Uses of OneInputStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime.strategy
Methods in org.apache.flink.datastream.api.extension.eventtime.strategy that return OneInputStreamProcessFunction -
Uses of OneInputStreamProcessFunction in org.apache.flink.datastream.api.stream
Methods in org.apache.flink.datastream.api.stream with parameters of type OneInputStreamProcessFunctionModifier and TypeMethodDescriptionGlobalStream.process(OneInputStreamProcessFunction<T, OUT> processFunction) Apply an operation to thisGlobalStream.KeyedPartitionStream.process(OneInputStreamProcessFunction<T, OUT> processFunction) Apply an operation to thisKeyedPartitionStream.KeyedPartitionStream.process(OneInputStreamProcessFunction<T, OUT> processFunction, org.apache.flink.api.java.functions.KeySelector<OUT, K> newKeySelector) Apply an operation to thisKeyedPartitionStream.NonKeyedPartitionStream.process(OneInputStreamProcessFunction<T, OUT> processFunction) Apply an operation to thisNonKeyedPartitionStream.