Interface IoFutureListener<F extends IoFuture>

  • Type Parameters:
    F - The Future type
    All Superinterfaces:
    java.util.EventListener

    public interface IoFutureListener<F extends IoFuture>
    extends java.util.EventListener
    Something interested in being notified when the completion of an asynchronous I/O operation : IoFuture.
    Author:
    Apache MINA Project
    • Method Detail

      • operationComplete

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