Class RichFlatJoinFunction<IN1,​IN2,​OUT>

    • Constructor Detail

      • RichFlatJoinFunction

        public RichFlatJoinFunction()
    • Method Detail

      • join

        public abstract void join​(IN1 first,
                                  IN2 second,
                                  Collector<OUT> out)
                           throws Exception
        Description copied from interface: FlatJoinFunction
        The join method, called once per joined pair of elements.
        Specified by:
        join in interface FlatJoinFunction<IN1,​IN2,​OUT>
        Parameters:
        first - The element from first input.
        second - The element from second input.
        out - The collector used to return zero, one, or more elements.
        Throws:
        Exception - This method may throw exceptions. Throwing an exception will cause the operation to fail and may trigger recovery.