Class TupleRightUnwrappingJoiner<I1,​I2,​OUT,​K>

  • Type Parameters:
    I1 - type of values in the left set
    I2 - type of values in the right set
    OUT - type of resulting values
    K - type of key
    All Implemented Interfaces:
    Serializable, org.apache.flink.api.common.functions.FlatJoinFunction<I1,​org.apache.flink.api.java.tuple.Tuple2<K,​I2>,​OUT>, org.apache.flink.api.common.functions.Function, org.apache.flink.api.common.functions.RichFunction

    @Internal
    public final class TupleRightUnwrappingJoiner<I1,​I2,​OUT,​K>
    extends WrappingFunction<org.apache.flink.api.common.functions.FlatJoinFunction<I1,​I2,​OUT>>
    implements org.apache.flink.api.common.functions.FlatJoinFunction<I1,​org.apache.flink.api.java.tuple.Tuple2<K,​I2>,​OUT>
    Joiner that unwraps values from the right set before applying the join operation.
    See Also:
    Serialized Form
    • Constructor Detail

      • TupleRightUnwrappingJoiner

        public TupleRightUnwrappingJoiner​(org.apache.flink.api.common.functions.FlatJoinFunction<I1,​I2,​OUT> wrapped)
    • Method Detail

      • join

        public void join​(I1 value1,
                         org.apache.flink.api.java.tuple.Tuple2<K,​I2> value2,
                         org.apache.flink.util.Collector<OUT> collector)
                  throws Exception
        Specified by:
        join in interface org.apache.flink.api.common.functions.FlatJoinFunction<I1,​I2,​OUT>
        Throws:
        Exception