Interface AsyncCallable<V>

    • Method Detail

      • call

        ListenableFuture<V> call()
                          throws java.lang.Exception
        Computes a result Future. The output Future need not be done, making AsyncCallable suitable for asynchronous derivations.

        Throwing an exception from this method is equivalent to returning a failing ListenableFuture.

        Throws:
        java.lang.Exception