| 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 open
Channels 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 on
SSLEngine |
| org.jboss.netty.handler.timeout |
Adds support for read and write timeout and idle connection notification
using a
Timer. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ChannelFutureProgressListener
Listens to the progress of a time-consuming I/O operation such as a large
file transfer.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ChannelFutureNotifier
ChannelFutureListener implementation which takes another ChannelFuture and notifies it
once the operationComplete method was called.
|
| Modifier and Type | Field and Description |
|---|---|
static ChannelFutureListener |
ChannelFutureListener.CLOSE
A
ChannelFutureListener that closes the Channel which is
associated with the specified ChannelFuture. |
static ChannelFutureListener |
ChannelFutureListener.CLOSE_ON_FAILURE
A
ChannelFutureListener that closes the Channel when the
operation ended up with a failure or cancellation rather than a success. |
private ChannelFutureListener |
DefaultChannelFuture.firstListener |
private ChannelFutureListener |
ChannelLocal.remover |
| Modifier and Type | Field and Description |
|---|---|
private java.util.List<ChannelFutureListener> |
DefaultChannelFuture.otherListeners |
| Modifier and Type | Method and 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) |
| Modifier and Type | Field and Description |
|---|---|
private ChannelFutureListener |
DefaultChannelGroupFuture.childListener |
private ChannelFutureListener |
DefaultChannelGroup.remover |
| Modifier and Type | Class and Description |
|---|---|
private static class |
SecureChatServerHandler.Greeter |
| Modifier and Type | Field and Description |
|---|---|
static ChannelFutureListener |
WebSocketServerHandshaker.HANDSHAKE_LISTENER
ChannelFutureListener which will call
Channels.fireExceptionCaught(ChannelHandlerContext, Throwable)
if the ChannelFuture was not successful. |
| Modifier and Type | Class and Description |
|---|---|
private static class |
SpdyHttpEncoder.SpdyFrameWriter |
private static class |
SpdySessionHandler.ClosingChannelFutureListener |
| Modifier and Type | Field and Description |
|---|---|
private ChannelFutureListener |
SpdySessionHandler.closeSessionFutureListener |
| Modifier and Type | Class and Description |
|---|---|
private static class |
SslHandler.ClosingChannelFutureListener |
| Modifier and Type | Class and Description |
|---|---|
private static class |
WriteTimeoutHandler.TimeoutCanceller |