Interface ThrowableTriConsumer<T,​U,​V>

  • Type Parameters:
    T - input parameter type T
    U - input parameter type U
    V - input parameter type V
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ThrowableTriConsumer<T,​U,​V>
    Throwable TriConsumer
    Since:
    0.1
    Author:
    PARK Yong Seo
    See Also:
    Consumer
    • Method Summary

      Modifier and Type Method Description
      void accept​(T t, U u, V v)  
    • Method Detail

      • accept

        void accept​(T t,
                    U u,
                    V v)
             throws java.lang.Exception
        Parameters:
        t - input parameter type T
        u - input parameter type U
        v - input parameter type V
        Throws:
        java.lang.Exception
        See Also:
        Consumer