Interface JoinFunctionAssigner<I1,I2>
-
- Type Parameters:
I1- The type of the first input DataSet of the Join transformation.I2- The type of the second input DataSet of the Join transformation.
- All Known Implementing Classes:
JoinOperator.DefaultJoin
@Deprecated @Public public interface JoinFunctionAssigner<I1,I2>
Deprecated.All Flink DataSet APIs are deprecated since Flink 1.18 and will be removed in a future Flink major version. You can still build your application in DataSet, but you should move to either the DataStream and/or Table API.A Join transformation that needs to be finished by specifying either aJoinFunctionor aFlatJoinFunctionbefore it can be used as an input to other operators.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <R> JoinOperator<I1,I2,R>with(org.apache.flink.api.common.functions.FlatJoinFunction<I1,I2,R> joinFunction)Deprecated.<R> JoinOperator<I1,I2,R>with(org.apache.flink.api.common.functions.JoinFunction<I1,I2,R> joinFunction)Deprecated.
-
-
-
Method Detail
-
with
<R> JoinOperator<I1,I2,R> with(org.apache.flink.api.common.functions.JoinFunction<I1,I2,R> joinFunction)
Deprecated.
-
with
<R> JoinOperator<I1,I2,R> with(org.apache.flink.api.common.functions.FlatJoinFunction<I1,I2,R> joinFunction)
Deprecated.
-
-