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 a JoinFunction or a FlatJoinFunction before it can be used as an input to other operators.
    See Also:
    FLIP-131: Consolidate the user-facing Dataflow SDKs/APIs (and deprecate the DataSet API
    • 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.