public interface ChannelPromise extends ChannelFuture, Promise<java.lang.Void>
ChannelFuture which is writable.| Modifier and Type | Method and Description |
|---|---|
ChannelPromise |
addListener(GenericFutureListener<? extends Future<? super java.lang.Void>> listener)
Adds the specified listener to this future.
|
ChannelPromise |
addListeners(GenericFutureListener<? extends Future<? super java.lang.Void>>... listeners)
Adds the specified listeners to this future.
|
ChannelPromise |
await()
Waits for this future to be completed.
|
ChannelPromise |
awaitUninterruptibly()
Waits for this future to be completed without
interruption.
|
Channel |
channel()
Returns a channel where the I/O operation associated with this
future takes place.
|
ChannelPromise |
removeListener(GenericFutureListener<? extends Future<? super java.lang.Void>> listener)
Removes the first occurrence of the specified listener from this future.
|
ChannelPromise |
removeListeners(GenericFutureListener<? extends Future<? super java.lang.Void>>... listeners)
Removes the first occurrence for each of the listeners from this future.
|
ChannelPromise |
setFailure(java.lang.Throwable cause)
Marks this future as a failure and notifies all
listeners.
|
ChannelPromise |
setSuccess() |
ChannelPromise |
setSuccess(java.lang.Void result)
Marks this future as a success and notifies all
listeners.
|
ChannelPromise |
sync()
Waits for this future until it is done, and rethrows the cause of the failure if this future
failed.
|
ChannelPromise |
syncUninterruptibly()
Waits for this future until it is done, and rethrows the cause of the failure if this future
failed.
|
boolean |
trySuccess() |
setUncancellable, tryFailure, trySuccessawait, await, awaitUninterruptibly, awaitUninterruptibly, cancel, cause, getNow, isCancellable, isSuccessChannel channel()
ChannelFuturechannel in interface ChannelFutureChannelPromise setSuccess(java.lang.Void result)
PromiseIllegalStateException.setSuccess in interface Promise<java.lang.Void>ChannelPromise setSuccess()
boolean trySuccess()
ChannelPromise setFailure(java.lang.Throwable cause)
PromiseIllegalStateException.setFailure in interface Promise<java.lang.Void>ChannelPromise addListener(GenericFutureListener<? extends Future<? super java.lang.Void>> listener)
FutureaddListener in interface ChannelFutureaddListener in interface Promise<java.lang.Void>ChannelPromise addListeners(GenericFutureListener<? extends Future<? super java.lang.Void>>... listeners)
FutureaddListeners in interface ChannelFutureaddListeners in interface Promise<java.lang.Void>ChannelPromise removeListener(GenericFutureListener<? extends Future<? super java.lang.Void>> listener)
FutureremoveListener in interface ChannelFutureremoveListener in interface Promise<java.lang.Void>ChannelPromise removeListeners(GenericFutureListener<? extends Future<? super java.lang.Void>>... listeners)
FutureremoveListeners in interface ChannelFutureremoveListeners in interface Promise<java.lang.Void>ChannelPromise sync() throws java.lang.InterruptedException
Futuresync in interface ChannelFuturesync in interface Promise<java.lang.Void>java.lang.InterruptedExceptionChannelPromise syncUninterruptibly()
FuturesyncUninterruptibly in interface ChannelFuturesyncUninterruptibly in interface Promise<java.lang.Void>ChannelPromise await() throws java.lang.InterruptedException
Futureawait in interface ChannelFutureawait in interface Promise<java.lang.Void>java.lang.InterruptedException - if the current thread was interruptedChannelPromise awaitUninterruptibly()
FutureInterruptedException and
discards it silently.awaitUninterruptibly in interface ChannelFutureawaitUninterruptibly in interface Promise<java.lang.Void>Copyright © 2008–2018 The Netty Project. All rights reserved.