Interface FutureCallback<V extends @Nullable Object>

    • Method Detail

      • onSuccess

        void onSuccess​(V result)
        Invoked with the result of the Future computation when it is successful.
      • onFailure

        void onFailure​(Throwable t)
        Invoked when a Future computation fails or is canceled.

        If the future's get method throws an ExecutionException, then the cause is passed to this method. Any other thrown object is passed unaltered.