Uses of Interface
org.apache.flink.datastream.api.stream.KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStream
Packages that use KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStream
-
Uses of KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStream in org.apache.flink.datastream.api.stream
Methods in org.apache.flink.datastream.api.stream that return KeyedPartitionStream.ProcessConfigurableAndKeyedPartitionStreamModifier and TypeMethodDescription<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>
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>
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.KeyedPartitionStream.ProcessConfigurableAndTwoKeyedPartitionStreams.getFirst()Get the first stream.KeyedPartitionStream.ProcessConfigurableAndTwoKeyedPartitionStreams.getSecond()Get the second stream.KeyedPartitionStream.process(OneInputStreamProcessFunction<T, OUT> processFunction, org.apache.flink.api.java.functions.KeySelector<OUT, K> newKeySelector) Apply an operation to thisKeyedPartitionStream.