Interface FutureFallback<V>

    • Method Detail

      • create

        ListenableFuture<V> create​(java.lang.Throwable t)
                            throws java.lang.Exception
        Returns a Future to be used in place of the Future that failed with the given exception. The exception is provided so that the Fallback implementation can conditionally determine whether to propagate the exception or to attempt to recover.
        Parameters:
        t - the exception that made the future fail. If the future's get method throws an ExecutionException, then the cause is passed to this method. Any other thrown object is passed unaltered.
        Throws:
        java.lang.Exception