public interface CloseFuture extends IoFuture
IoFuture
for asynchronous close requests.
IoSession session = ...; CloseFuture future = session.close(true); // Wait until the connection is closed future.awaitUninterruptibly(); // Now connection should be closed. assert future.isClosed();
限定符和类型 | 方法和说明 |
---|---|
CloseFuture |
addListener(IoFutureListener<?> listener)
Adds an event listener which is notified when
this future is completed.
|
CloseFuture |
await()
Wait for the asynchronous operation to complete.
|
CloseFuture |
awaitUninterruptibly()
Wait for the asynchronous operation to complete uninterruptibly.
|
boolean |
isClosed() |
CloseFuture |
removeListener(IoFutureListener<?> listener)
Removes an existing event listener so it won't be notified when
the future is completed.
|
void |
setClosed()
Marks this future as closed and notifies all threads waiting for this
future.
|
await, await, awaitUninterruptibly, awaitUninterruptibly, getSession, isDone, join, join
boolean isClosed()
void setClosed()
CloseFuture await() throws java.lang.InterruptedException
CloseFuture awaitUninterruptibly()
awaitUninterruptibly
在接口中 IoFuture
CloseFuture addListener(IoFutureListener<?> listener)
addListener
在接口中 IoFuture
listener
- The listener to addCloseFuture removeListener(IoFutureListener<?> listener)
removeListener
在接口中 IoFuture
listener
- The listener to remove