public class DefaultWriteFuture extends DefaultIoFuture implements WriteFuture
WriteFuture.| Constructor and Description |
|---|
DefaultWriteFuture(IoSession session)
Creates a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
WriteFuture |
addListener(IoFutureListener<?> listener)
Adds an event listener which is notified when
this future is completed.
|
WriteFuture |
await()
Wait for the asynchronous operation to complete.
|
WriteFuture |
awaitUninterruptibly()
Wait for the asynchronous operation to complete uninterruptibly.
|
Throwable |
getException()
Returns the cause of the write failure if and only if the write
operation has failed due to an
Exception. |
boolean |
isWritten()
Returns true if the write operation is finished successfully.
|
static WriteFuture |
newNotWrittenFuture(IoSession session,
Throwable cause)
Returns a new
DefaultWriteFuture which is already marked as 'not written'. |
static WriteFuture |
newWrittenFuture(IoSession session)
Returns a new
DefaultWriteFuture which is already marked as 'written'. |
WriteFuture |
removeListener(IoFutureListener<?> listener)
Removes an existing event listener so it won't be notified when
the future is completed.
|
void |
setException(Throwable exception)
Sets the cause of the write failure, and notifies all threads waiting
for this future.
|
void |
setWritten()
Sets the message is written, and notifies all threads waiting for
this future.
|
await, await, awaitUninterruptibly, awaitUninterruptibly, getSession, getValue, isDone, join, join, setValueclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitawait, await, awaitUninterruptibly, awaitUninterruptibly, getSession, isDone, join, joinpublic DefaultWriteFuture(IoSession session)
public static WriteFuture newWrittenFuture(IoSession session)
DefaultWriteFuture which is already marked as 'written'.public static WriteFuture newNotWrittenFuture(IoSession session, Throwable cause)
DefaultWriteFuture which is already marked as 'not written'.public boolean isWritten()
isWritten in interface WriteFuturepublic Throwable getException()
Exception. Otherwise,
null is returned.getException in interface WriteFuturepublic void setWritten()
setWritten in interface WriteFuturepublic void setException(Throwable exception)
setException in interface WriteFuturepublic WriteFuture await() throws InterruptedException
await in interface IoFutureawait in interface WriteFutureawait in class DefaultIoFutureWriteFutureInterruptedExceptionpublic WriteFuture awaitUninterruptibly()
awaitUninterruptibly in interface IoFutureawaitUninterruptibly in interface WriteFutureawaitUninterruptibly in class DefaultIoFuturepublic WriteFuture addListener(IoFutureListener<?> listener)
addListener in interface IoFutureaddListener in interface WriteFutureaddListener in class DefaultIoFuturepublic WriteFuture removeListener(IoFutureListener<?> listener)
removeListener in interface IoFutureremoveListener in interface WriteFutureremoveListener in class DefaultIoFuture