Package org.apache.mina.core.future
Interface IoFutureListener<F extends IoFuture>
-
- Type Parameters:
F
- The Future type
- All Superinterfaces:
EventListener
public interface IoFutureListener<F extends IoFuture> extends EventListener
Something interested in being notified when the completion of an asynchronous I/O operation :IoFuture
.- Author:
- Apache MINA Project
-
-
Field Summary
Fields Modifier and Type Field Description static IoFutureListener<IoFuture>
CLOSE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
operationComplete(F future)
Invoked when the operation associated with theIoFuture
has been completed even if you add the listener after the completion.
-
-
-
Field Detail
-
CLOSE
static final IoFutureListener<IoFuture> CLOSE
-
-