Uses of Interface
org.apache.flink.datastream.api.stream.NonKeyedPartitionStream
Packages that use NonKeyedPartitionStream
-
Uses of NonKeyedPartitionStream in org.apache.flink.datastream.api.builtin
Methods in org.apache.flink.datastream.api.builtin that return NonKeyedPartitionStreamModifier and TypeMethodDescriptionstatic <KEY,T1, T2, OUT>
NonKeyedPartitionStream<OUT>BuiltinFuncs.join(KeyedPartitionStream<KEY, T1> leftStream, KeyedPartitionStream<KEY, T2> rightStream, JoinFunction<T1, T2, OUT> joinFunction) Inner join twoKeyedPartitionStream.static <KEY,T1, T2, OUT>
NonKeyedPartitionStream<OUT>BuiltinFuncs.join(KeyedPartitionStream<KEY, T1> leftStream, KeyedPartitionStream<KEY, T2> rightStream, JoinFunction<T1, T2, OUT> joinFunction, JoinType joinType) Join twoKeyedPartitionStreamwith the type ofJoinType.static <KEY,T1, T2, OUT>
NonKeyedPartitionStream<OUT>BuiltinFuncs.join(NonKeyedPartitionStream<T1> leftStream, org.apache.flink.api.java.functions.KeySelector<T1, KEY> leftKeySelector, NonKeyedPartitionStream<T2> rightStream, org.apache.flink.api.java.functions.KeySelector<T2, KEY> rightKeySelector, JoinFunction<T1, T2, OUT> joinFunction) Inner join twoNonKeyedPartitionStream.static <KEY,T1, T2, OUT>
NonKeyedPartitionStream<OUT>BuiltinFuncs.join(NonKeyedPartitionStream<T1> leftStream, org.apache.flink.api.java.functions.KeySelector<T1, KEY> leftKeySelector, NonKeyedPartitionStream<T2> rightStream, org.apache.flink.api.java.functions.KeySelector<T2, KEY> rightKeySelector, JoinFunction<T1, T2, OUT> joinFunction, JoinType joinType) Join twoNonKeyedPartitionStreamwith the type ofJoinType.Methods in org.apache.flink.datastream.api.builtin with parameters of type NonKeyedPartitionStreamModifier and TypeMethodDescriptionstatic <KEY,T1, T2, OUT>
NonKeyedPartitionStream<OUT>BuiltinFuncs.join(NonKeyedPartitionStream<T1> leftStream, org.apache.flink.api.java.functions.KeySelector<T1, KEY> leftKeySelector, NonKeyedPartitionStream<T2> rightStream, org.apache.flink.api.java.functions.KeySelector<T2, KEY> rightKeySelector, JoinFunction<T1, T2, OUT> joinFunction) Inner join twoNonKeyedPartitionStream.static <KEY,T1, T2, OUT>
NonKeyedPartitionStream<OUT>BuiltinFuncs.join(NonKeyedPartitionStream<T1> leftStream, org.apache.flink.api.java.functions.KeySelector<T1, KEY> leftKeySelector, NonKeyedPartitionStream<T2> rightStream, org.apache.flink.api.java.functions.KeySelector<T2, KEY> rightKeySelector, JoinFunction<T1, T2, OUT> joinFunction, JoinType joinType) Join twoNonKeyedPartitionStreamwith the type ofJoinType. -
Uses of NonKeyedPartitionStream in org.apache.flink.datastream.api.stream
Subinterfaces of NonKeyedPartitionStream in org.apache.flink.datastream.api.streamModifier and TypeInterfaceDescriptionstatic interfaceThis interface represents a configurableNonKeyedPartitionStream.Methods in org.apache.flink.datastream.api.stream that return NonKeyedPartitionStreamModifier and TypeMethodDescriptionGlobalStream.shuffle()Transform this stream to a newNonKeyedPartitionStream, data will be shuffled between these two streams.KeyedPartitionStream.shuffle()Transform this stream to a newNonKeyedPartitionStream, data will be shuffled between these two streams.NonKeyedPartitionStream.shuffle()Transform this stream to a newNonKeyedPartitionStream, data will be shuffled between these two streams.Methods in org.apache.flink.datastream.api.stream with parameters of type NonKeyedPartitionStreamModifier and TypeMethodDescription<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>NonKeyedPartitionStream.connectAndProcess(NonKeyedPartitionStream<T_OTHER> other, TwoInputNonBroadcastStreamProcessFunction<T, T_OTHER, OUT> processFunction) Apply to a two input operation on this and otherNonKeyedPartitionStream.