Example usage for Java io.netty.channel ChannelFutureListener fields, constructors, methods, implement or subclass
The text is from its open source code.
ChannelFutureListener | CLOSE A ChannelFutureListener that closes the Channel which is associated with the specified ChannelFuture . |
ChannelFutureListener | CLOSE_ON_FAILURE A ChannelFutureListener that closes the Channel when the operation ended up with a failure or cancellation rather than a success. |
ChannelFutureListener | FIRE_EXCEPTION_ON_FAILURE A ChannelFutureListener that forwards the Throwable of the ChannelFuture into the ChannelPipeline . |
void | operationComplete(F future) Invoked when the operation associated with the Future has been completed. |