Interface FutureCallback<V>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void  t)
      Invoked when a Future computation fails or is canceled.
      void V result)
      Invoked with the result of the Future computation when it is successful.
    • Method Detail

      • onSuccess

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

        void  t)
        Invoked when a Future computation fails or is canceled.

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