Java io.netty.channel ChannelFutureListener fields, constructors, methods, implement or subclass

Example usage for Java io.netty.channel ChannelFutureListener fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.channel ChannelFutureListener.

The text is from its open source code.

Implementation

io.netty.channel.ChannelFutureListener has the following implementations.
Click this link to see all its implementation.

Field

ChannelFutureListenerCLOSE
A ChannelFutureListener that closes the Channel which is associated with the specified ChannelFuture .
ChannelFutureListenerCLOSE_ON_FAILURE
A ChannelFutureListener that closes the Channel when the operation ended up with a failure or cancellation rather than a success.
ChannelFutureListenerFIRE_EXCEPTION_ON_FAILURE
A ChannelFutureListener that forwards the Throwable of the ChannelFuture into the ChannelPipeline .

Constructor

Method

voidoperationComplete(F future)
Invoked when the operation associated with the Future has been completed.