Interface Action3<T1,​T2,​T3>

  • Type Parameters:
    T1 - The type of the first parameter to the callback.
    T2 - The type of the second parameter to the callback.
    T3 - The type of the third parameter to the callback.

    public interface Action3<T1,​T2,​T3>
    A callback that takes three parameters.
    • Method Detail

      • invoke

        void invoke​(T1 param1,
                    T2 param2,
                    T3 param3)