Interface CTripleConsumer<T,​U,​L>


  • public interface CTripleConsumer<T,​U,​L>
    • Method Detail

      • accept

        void accept​(T t,
                    U u,
                    L l)
        Performs this operation on the given arguments.
        Parameters:
        t - the first input argument
        u - the second input argument
        l - the third input argument
      • andThen

        default CTripleConsumer<T,​U,​L> andThen​(CTripleConsumer<? super T,​? super U,​? super L> after)
        Returns a composed TripleConsumer that performs, in sequence, this operation followed by the after operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the after operation will not be performed.
        Parameters:
        after - the operation to perform after this operation
        Returns:
        a composed TripleConsumer that performs in sequence this operation followed by the after operation
        Throws:
        java.lang.NullPointerException - if after is null