Uses of Interface
org.apache.flink.datastream.api.function.TwoInputBroadcastStreamProcessFunction
Packages that use TwoInputBroadcastStreamProcessFunction
Package
Description
-
Uses of TwoInputBroadcastStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime
Methods in org.apache.flink.datastream.api.extension.eventtime that return TwoInputBroadcastStreamProcessFunctionModifier and TypeMethodDescriptionstatic <IN1,IN2, OUT>
TwoInputBroadcastStreamProcessFunction<IN1,IN2, OUT> EventTimeExtension.wrapProcessFunction(TwoInputBroadcastEventTimeStreamProcessFunction<IN1, IN2, OUT> processFunction) Wrap the user-definedTwoInputBroadcastEventTimeStreamProcessFunction, which will provide related components such asEventTimeManagerand declare the necessary built-in state required for the Timer, etc. -
Uses of TwoInputBroadcastStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime.function
Subinterfaces of TwoInputBroadcastStreamProcessFunction in org.apache.flink.datastream.api.extension.eventtime.functionModifier and TypeInterfaceDescriptioninterfaceTwoInputBroadcastEventTimeStreamProcessFunction<IN1,IN2, OUT> TheTwoInputBroadcastStreamProcessFunctionthat extends with event time support. -
Uses of TwoInputBroadcastStreamProcessFunction in org.apache.flink.datastream.api.stream
Methods in org.apache.flink.datastream.api.stream with parameters of type TwoInputBroadcastStreamProcessFunctionModifier and TypeMethodDescription<K,T_OTHER, OUT>
NonKeyedPartitionStream.ProcessConfigurableAndNonKeyedPartitionStream<OUT>BroadcastStream.connectAndProcess(KeyedPartitionStream<K, T_OTHER> other, TwoInputBroadcastStreamProcessFunction<T_OTHER, T, OUT> processFunction) Apply a two input operation to this and otherKeyedPartitionStream.<K,T_OTHER, OUT>
KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStream<K,OUT> BroadcastStream.connectAndProcess(KeyedPartitionStream<K, T_OTHER> other, TwoInputBroadcastStreamProcessFunction<T_OTHER, T, OUT> processFunction, org.apache.flink.api.java.functions.KeySelector<OUT, K> newKeySelector) Apply a two input operation to this and otherKeyedPartitionStream.<T_OTHER,OUT>
NonKeyedPartitionStream.ProcessConfigurableAndNonKeyedPartitionStream<OUT>BroadcastStream.connectAndProcess(NonKeyedPartitionStream<T_OTHER> other, TwoInputBroadcastStreamProcessFunction<T_OTHER, T, OUT> processFunction) Apply a two input operation to this and otherNonKeyedPartitionStream.<T_OTHER,OUT>
NonKeyedPartitionStream.ProcessConfigurableAndNonKeyedPartitionStream<OUT>KeyedPartitionStream.connectAndProcess(BroadcastStream<T_OTHER> other, TwoInputBroadcastStreamProcessFunction<T, T_OTHER, OUT> processFunction) Apply a two input operation to this and otherBroadcastStream.<T_OTHER,OUT>
KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStream<K,OUT> KeyedPartitionStream.connectAndProcess(BroadcastStream<T_OTHER> other, TwoInputBroadcastStreamProcessFunction<T, T_OTHER, OUT> processFunction, org.apache.flink.api.java.functions.KeySelector<OUT, K> newKeySelector) Apply a two input operation to this and otherBroadcastStream.<T_OTHER,OUT>
NonKeyedPartitionStream.ProcessConfigurableAndNonKeyedPartitionStream<OUT>NonKeyedPartitionStream.connectAndProcess(BroadcastStream<T_OTHER> other, TwoInputBroadcastStreamProcessFunction<T, T_OTHER, OUT> processFunction) Apply a two input operation to this and otherBroadcastStream.