Uses of Interface
org.apache.flink.datastream.api.extension.join.JoinFunction
Packages that use JoinFunction
-
Uses of JoinFunction in org.apache.flink.datastream.api.builtin
Methods in org.apache.flink.datastream.api.builtin with parameters of type JoinFunctionModifier and TypeMethodDescriptionstatic <IN1,IN2, OUT>
TwoInputNonBroadcastStreamProcessFunction<IN1,IN2, OUT> BuiltinFuncs.join(JoinFunction<IN1, IN2, OUT> joinFunction) Wrap the JoinFunction and INNER JoinType within a ProcessFunction to perform the Join operation.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) 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.