Uses of Interface
org.jboss.netty.channel.ChannelFutureListener
-
Packages that use ChannelFutureListener Package Description org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.org.jboss.netty.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them.org.jboss.netty.example.securechat org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngine
org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
Uses of ChannelFutureListener in org.jboss.netty.channel
Subinterfaces of ChannelFutureListener in org.jboss.netty.channel Modifier and Type Interface Description interface
ChannelFutureProgressListener
Listens to the progress of a time-consuming I/O operation such as a large file transfer.Classes in org.jboss.netty.channel that implement ChannelFutureListener Modifier and Type Class Description class
ChannelFutureNotifier
ChannelFutureListener implementation which takes another ChannelFuture and notifies it once the operationComplete method was called.Fields in org.jboss.netty.channel declared as ChannelFutureListener Modifier and Type Field Description static ChannelFutureListener
ChannelFutureListener. CLOSE
AChannelFutureListener
that closes theChannel
which is associated with the specifiedChannelFuture
.static ChannelFutureListener
ChannelFutureListener. CLOSE_ON_FAILURE
AChannelFutureListener
that closes theChannel
when the operation ended up with a failure or cancellation rather than a success.private ChannelFutureListener
DefaultChannelFuture. firstListener
private ChannelFutureListener
ChannelLocal. remover
Fields in org.jboss.netty.channel with type parameters of type ChannelFutureListener Modifier and Type Field Description private java.util.List<ChannelFutureListener>
DefaultChannelFuture. otherListeners
Methods in org.jboss.netty.channel with parameters of type ChannelFutureListener Modifier and Type Method Description void
ChannelFuture. addListener(ChannelFutureListener listener)
Adds the specified listener to this future.void
CompleteChannelFuture. addListener(ChannelFutureListener listener)
void
DefaultChannelFuture. addListener(ChannelFutureListener listener)
private void
DefaultChannelFuture. notifyListener(ChannelFutureListener l)
void
ChannelFuture. removeListener(ChannelFutureListener listener)
Removes the specified listener from this future.void
CompleteChannelFuture. removeListener(ChannelFutureListener listener)
void
DefaultChannelFuture. removeListener(ChannelFutureListener listener)
-
Uses of ChannelFutureListener in org.jboss.netty.channel.group
Fields in org.jboss.netty.channel.group declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
DefaultChannelGroupFuture. childListener
private ChannelFutureListener
DefaultChannelGroup. remover
-
Uses of ChannelFutureListener in org.jboss.netty.example.securechat
Classes in org.jboss.netty.example.securechat that implement ChannelFutureListener Modifier and Type Class Description private static class
SecureChatServerHandler.Greeter
-
Uses of ChannelFutureListener in org.jboss.netty.handler.codec.http.websocketx
Fields in org.jboss.netty.handler.codec.http.websocketx declared as ChannelFutureListener Modifier and Type Field Description static ChannelFutureListener
WebSocketServerHandshaker. HANDSHAKE_LISTENER
ChannelFutureListener
which will callChannels.fireExceptionCaught(ChannelHandlerContext, Throwable)
if theChannelFuture
was not successful. -
Uses of ChannelFutureListener in org.jboss.netty.handler.codec.spdy
Classes in org.jboss.netty.handler.codec.spdy that implement ChannelFutureListener Modifier and Type Class Description private static class
SpdyHttpEncoder.SpdyFrameWriter
private static class
SpdySessionHandler.ClosingChannelFutureListener
Fields in org.jboss.netty.handler.codec.spdy declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
SpdySessionHandler. closeSessionFutureListener
-
Uses of ChannelFutureListener in org.jboss.netty.handler.ssl
Classes in org.jboss.netty.handler.ssl that implement ChannelFutureListener Modifier and Type Class Description private static class
SslHandler.ClosingChannelFutureListener
-
Uses of ChannelFutureListener in org.jboss.netty.handler.timeout
Classes in org.jboss.netty.handler.timeout that implement ChannelFutureListener Modifier and Type Class Description private static class
WriteTimeoutHandler.TimeoutCanceller
-