Interface Consumer7<T1,​T2,​T3,​T4,​T5,​T6,​T7>

  • Type Parameters:
    T1 - the first value type
    T2 - the second value type
    T3 - the third value type
    T4 - the fourth value type
    T5 - the fifth value type
    T6 - the sixth value type
    T7 - the seventh value type

    public interface Consumer7<T1,​T2,​T3,​T4,​T5,​T6,​T7>
    Functional interface for a callback that consumes multipe values at the same and may throw a checked exception.
    • Method Detail

      • accept

        void accept​(T1 t1,
                    T2 t2,
                    T3 t3,
                    T4 t4,
                    T5 t5,
                    T6 t6,
                    T7 t7)
             throws java.lang.Throwable
        Consum the input parameters.
        Parameters:
        t1 - the first parameter
        t2 - the second parameter
        t3 - the third parameter
        t4 - the fourth parameter
        t5 - the fifth parameter
        t6 - the sixth parameter
        t7 - the seventh parameter
        Throws:
        java.lang.Throwable - on error