Interface FutureListener<T extends DefaultFuture<?>>


  • public interface FutureListener<T extends DefaultFuture<?>>
    Something interested in being notified when the completion of an asynchronous download operation : DefaultFuture.
    • Method Detail

      • operationComplete

        void operationComplete​(T future)
        Invoked when the operation associated with the DefaultFuture has been completed even if you add the listener after the completion.
        Parameters:
        future - The source DefaultFuture which called this callback.