Uses of Interface
org.apache.flink.datastream.api.function.TwoInputNonBroadcastStreamProcessFunction
-
Packages that use TwoInputNonBroadcastStreamProcessFunction Package Description org.apache.flink.datastream.api.stream -
-
Uses of TwoInputNonBroadcastStreamProcessFunction in org.apache.flink.datastream.api.stream
Methods in org.apache.flink.datastream.api.stream with parameters of type TwoInputNonBroadcastStreamProcessFunction Modifier and Type Method Description <T_OTHER,OUT>
GlobalStream.ProcessConfigurableAndGlobalStream<OUT>GlobalStream. connectAndProcess(GlobalStream<T_OTHER> other, TwoInputNonBroadcastStreamProcessFunction<T,T_OTHER,OUT> processFunction)Apply a two input operation to this and otherGlobalStream.<T_OTHER,OUT>
NonKeyedPartitionStream.ProcessConfigurableAndNonKeyedPartitionStream<OUT>KeyedPartitionStream. connectAndProcess(KeyedPartitionStream<K,T_OTHER> other, TwoInputNonBroadcastStreamProcessFunction<T,T_OTHER,OUT> processFunction)Apply a two input operation to this and otherKeyedPartitionStream.<T_OTHER,OUT>
KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStream<K,OUT>KeyedPartitionStream. connectAndProcess(KeyedPartitionStream<K,T_OTHER> other, TwoInputNonBroadcastStreamProcessFunction<T,T_OTHER,OUT> processFunction, org.apache.flink.api.java.functions.KeySelector<OUT,K> newKeySelector)Apply a two input operation to this and otherKeyedPartitionStream.The two keyed streams must have the same partitions, otherwise it makes no sense to connect them.<T_OTHER,OUT>
NonKeyedPartitionStream.ProcessConfigurableAndNonKeyedPartitionStream<OUT>NonKeyedPartitionStream. connectAndProcess(NonKeyedPartitionStream<T_OTHER> other, TwoInputNonBroadcastStreamProcessFunction<T,T_OTHER,OUT> processFunction)Apply to a two input operation on this and otherNonKeyedPartitionStream.
-