Class RichJoinFunction<IN1,​IN2,​OUT>

    • Constructor Detail

      • RichJoinFunction

        public RichJoinFunction()
    • Method Detail

      • join

        public abstract OUT join​(IN1 first,
                                 IN2 second)
                          throws Exception
        Description copied from interface: JoinFunction
        The join method, called once per joined pair of elements.
        Specified by:
        join in interface JoinFunction<IN1,​IN2,​OUT>
        Parameters:
        first - The element from first input.
        second - The element from second input.
        Returns:
        The resulting element.
        Throws:
        Exception - This method may throw exceptions. Throwing an exception will cause the operation to fail and may trigger recovery.