Interface IProvider.CallbackHandler<T,​U>

  • Enclosing interface:
    IProvider
    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 static interface IProvider.CallbackHandler<T,​U>
    • Method Summary

      Modifier and Type Method Description
      void callback​(T t, U u)
      Performs this operation on the given arguments.
    • Method Detail

      • callback

        void callback​(T t,
                      U u)
        Performs this operation on the given arguments.
        Parameters:
        t - the first input argument
        u - the second input argument