Interface TimerLogger.LoggableBiFunction<R,​T0,​T1>

  • Type Parameters:
    T0 - the type of the first argument
    T1 - the type of the second argument
    R - the type of the return value
    Enclosing class:
    TimerLogger
    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 TimerLogger.LoggableBiFunction<R,​T0,​T1>
    A Function consuming two arguments and producing one value.
    • Method Detail

      • run

        R run​(T0 arg0,
              T1 arg1)
        Runs this function.
        Parameters:
        arg0 - the first argument
        arg1 - the second argument
        Returns:
        the function result