Interface ListenableFuture<V>

    • Method Detail

      • done

        void done()
        Terminate and if there is no exception, mark this Future as done and release the internal lock.
      • touch

        void touch()
        Touch the current instance to prevent external service to times out.
      • addListener

        ListenableFuture<V> addListener​(Runnable listener,
                                        Executor exec)
        Adds a listener and executor to the ListenableFuture. The listener will be passed to the executor for execution when the Future's computation is complete.
        Executor can be null, in that case executor will be executed in the thread where completion happens.
        There is no guaranteed ordering of execution of listeners, they may get called in the order they were added and they may get called out of order, but any listener added through this method is guaranteed to be called once the computation is complete.
        Parameters:
        listener - the listener to run when the computation is complete.
        exec - the executor to run the listener in.
        Returns:
        this Future