Uses of Class
org.apache.flink.datastream.api.extension.join.JoinType
-
Packages that use JoinType Package Description org.apache.flink.datastream.api.builtin org.apache.flink.datastream.api.extension.join -
-
Uses of JoinType in org.apache.flink.datastream.api.builtin
Methods in org.apache.flink.datastream.api.builtin with parameters of type JoinType Modifier and Type Method Description static <IN1,IN2,OUT>
TwoInputNonBroadcastStreamProcessFunction<IN1,IN2,OUT>BuiltinFuncs. join(JoinFunction<IN1,IN2,OUT> joinFunction, JoinType joinType)Wrap the JoinFunction and JoinType within a ProcessFunction to perform the Join operation.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, JoinType joinType)Join twoNonKeyedPartitionStreamwith the type ofJoinType. -
Uses of JoinType in org.apache.flink.datastream.api.extension.join
Methods in org.apache.flink.datastream.api.extension.join that return JoinType Modifier and Type Method Description static JoinTypeJoinType. valueOf(String name)Returns the enum constant of this type with the specified name.static JoinType[]JoinType. values()Returns an array containing the constants of this enum type, in the order they are declared.
-