org.apache.mina.common
Interface IoFutureListener
- All Superinterfaces:
- java.util.EventListener
public interface IoFutureListener
- extends java.util.EventListener
Something interested in being notified when the result
of an IoFuture
becomes available.
CLOSE
static final IoFutureListener CLOSE
- An
IoFutureListener
that closes the IoSession
which is
associated with the specified IoFuture
.
operationComplete
void operationComplete(IoFuture future)
- Invoked when the operation associated with the
IoFuture
has been completed.
- Parameters:
future
- The source IoFuture
which called this
callback.