Interface Functions.FailableCallable<O,​T extends java.lang.Throwable>

  • Enclosing class:
    Functions
    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 Functions.FailableCallable<O,​T extends java.lang.Throwable>
    • Method Detail

      • call

        O call()
        throws T extends java.lang.Throwable
        Calls the callable.
        Returns:
        The value returned from the callable
        Throws:
        T - if the callable fails
        T extends java.lang.Throwable