Uses of Package
org.jboss.netty.channel
-
Packages that use org.jboss.netty.channel Package Description org.jboss.netty.bootstrap IoC/DI friendly helper classes which enable an easy implementation of typical client side and server side channel initialization.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.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.org.jboss.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChannel
and its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).org.jboss.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).org.jboss.netty.example.discard org.jboss.netty.example.echo org.jboss.netty.example.factorial org.jboss.netty.example.http.file org.jboss.netty.example.http.helloworld org.jboss.netty.example.http.snoop org.jboss.netty.example.http.tunnel org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.example.http.websocketx.client This is an example web service client.org.jboss.netty.example.http.websocketx.server This package contains an example web socket web server.org.jboss.netty.example.localtime org.jboss.netty.example.objectecho org.jboss.netty.example.portunification org.jboss.netty.example.proxy org.jboss.netty.example.qotm org.jboss.netty.example.securechat org.jboss.netty.example.telnet org.jboss.netty.example.uptime org.jboss.netty.handler.codec.base64 Encoder and decoder which transform a Base64-encodedString
orChannelBuffer
into a decodedChannelBuffer
and vice versa.org.jboss.netty.handler.codec.compression Encoder and decoder which compresses and decompressesChannelBuffer
s in a compression format such as zlib and gzip.org.jboss.netty.handler.codec.embedder A helper that wraps an encoder or a decoder so that they can be used without doing actual I/O in unit tests or higher level codecs.org.jboss.netty.handler.codec.frame Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.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.marshalling Decoder and Encoder which uses JBoss Marshalling.org.jboss.netty.handler.codec.oneone Simplistic abstract classes which help implement encoder and decoder that transform an object into another object and vice versa.org.jboss.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessage
into aChannelBuffer
and vice versa.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoder
which enables implementation of a non-blocking decoder in the blocking I/O paradigm.org.jboss.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec.org.jboss.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializable
object into a byte buffer and vice versa.org.jboss.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.codec.string Encoder and decoder which transform aString
into aChannelBuffer
and vice versa.org.jboss.netty.handler.execution Executor
-based implementation of various thread models that separate business logic from I/O threadsorg.jboss.netty.handler.ipfilter Implementation of a Ip based Filter handlers.
org.jboss.netty.handler.logging Logs aChannelEvent
for debugging purpose using anInternalLogger
.org.jboss.netty.handler.queue The special-purpose handlers that store an event into an internal queue instead of propagating the event immediately.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngine
org.jboss.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError
.org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
.org.jboss.netty.handler.traffic Implementation of a Traffic Shaping Handler and Dynamic Statistics.
-
Classes in org.jboss.netty.channel used by org.jboss.netty.bootstrap Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChildChannelStateEvent AChannelEvent
which represents the notification of the state of a childChannel
.DefaultChannelFuture The defaultChannelFuture
implementation.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel Class Description AbstractChannel A skeletalChannel
implementation.AbstractChannel.ChannelCloseFuture Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelConfig A set of configuration properties of aChannel
.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelException ARuntimeException
which is thrown when an I/O operation fails.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
.ChannelFutureProgressListener Listens to the progress of a time-consuming I/O operation such as a large file transfer.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineException AChannelException
which is thrown when aChannelPipeline
failed to process aChannelEvent
or when aChannelPipelineFactory
failed to initialize aChannelPipeline
.ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelSink Receives and processes the terminal downstreamChannelEvent
s.ChannelState The current or future state of aChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChildChannelStateEvent AChannelEvent
which represents the notification of the state of a childChannel
.CompleteChannelFuture A skeletalChannelFuture
implementation which represents aChannelFuture
which has been completed already.DefaultChannelFuture The defaultChannelFuture
implementation.DefaultChannelPipeline.DefaultChannelHandlerContext ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.FileRegion A region of a file that is sent via aChannel
which supports zero-copy file transfer.MessageEvent AChannelEvent
which represents the transmission or reception of a message.ReceiveBufferSizePredictor Predicts the number of readable bytes in the receive buffer of aChannel
.ReceiveBufferSizePredictorFactory Creates a newReceiveBufferSizePredictor
.ServerChannel WriteCompletionEvent AChannelEvent
which represents the notification of the completion of a write request on aChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.group Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.local Class Description AbstractChannel A skeletalChannel
implementation.AbstractChannelSink A skeletalChannelSink
implementation.AbstractServerChannel A skeletal server-sideChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelConfig A set of configuration properties of aChannel
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelPipeline ChannelSink Receives and processes the terminal downstreamChannelEvent
s.MessageEvent AChannelEvent
which represents the transmission or reception of a message.ServerChannel ServerChannelFactory AChannelFactory
that creates aServerChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.socket Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelConfig A set of configuration properties of aChannel
.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelPipeline DefaultChannelConfig The defaultSocketChannelConfig
implementation.DefaultChannelFuture The defaultChannelFuture
implementation.DefaultServerChannelConfig The defaultServerSocketChannelConfig
implementation.ReceiveBufferSizePredictor Predicts the number of readable bytes in the receive buffer of aChannel
.ReceiveBufferSizePredictorFactory Creates a newReceiveBufferSizePredictor
.ServerChannel ServerChannelFactory AChannelFactory
that creates aServerChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.socket.http Class Description AbstractChannel A skeletalChannel
implementation.AbstractChannelSink A skeletalChannelSink
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelConfig A set of configuration properties of aChannel
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelSink Receives and processes the terminal downstreamChannelEvent
s.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.socket.nio Class Description AbstractChannel A skeletalChannel
implementation.AbstractChannelSink A skeletalChannelSink
implementation.AbstractServerChannel A skeletal server-sideChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelConfig A set of configuration properties of aChannel
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelPipeline ChannelSink Receives and processes the terminal downstreamChannelEvent
s.DefaultChannelConfig The defaultSocketChannelConfig
implementation.FileRegion A region of a file that is sent via aChannel
which supports zero-copy file transfer.MessageEvent AChannelEvent
which represents the transmission or reception of a message.ReceiveBufferSizePredictor Predicts the number of readable bytes in the receive buffer of aChannel
.ReceiveBufferSizePredictorFactory Creates a newReceiveBufferSizePredictor
.ServerChannel ServerChannelFactory AChannelFactory
that creates aServerChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.socket.oio Class Description AbstractChannel A skeletalChannel
implementation.AbstractChannelSink A skeletalChannelSink
implementation.AbstractServerChannel A skeletal server-sideChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelPipeline ChannelSink Receives and processes the terminal downstreamChannelEvent
s.ServerChannel ServerChannelFactory AChannelFactory
that creates aServerChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.discard Class Description ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type.WriteCompletionEvent AChannelEvent
which represents the notification of the completion of a write request on aChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.echo Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.factorial Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.file Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.helloworld Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.snoop Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.tunnel Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.upload Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.websocketx.autobahn Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.websocketx.client Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.http.websocketx.server Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.localtime Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.objectecho Class Description ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.portunification Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.proxy Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.qotm Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.securechat Class Description ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.telnet Class Description ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipeline
for a newChannel
.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.example.uptime Class Description ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.base64 Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.compression Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.embedder Class Description AbstractChannel A skeletalChannel
implementation.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelConfig A set of configuration properties of aChannel
.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFactory The main interface to a transport that creates aChannel
associated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelPipelineException AChannelException
which is thrown when aChannelPipeline
failed to process aChannelEvent
or when aChannelPipelineFactory
failed to initialize aChannelPipeline
.ChannelSink Receives and processes the terminal downstreamChannelEvent
s.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.DefaultChannelPipeline The defaultChannelPipeline
implementation. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.frame Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.http Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelHandler AChannelHandler
which provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.http.websocketx Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelPipeline ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.marshalling Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.oneone Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.protobuf Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.replay Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.rtsp Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.serialization Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.socks Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.spdy Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelHandler AChannelHandler
which provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.codec.string Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.execution Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.ipfilter Class Description ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.logging Class Description ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.queue Class Description ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelHandler AChannelHandler
which provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.ssl Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.DefaultChannelFuture The defaultChannelFuture
implementation.ExceptionEvent AChannelEvent
which represents the notification of an exception raised by aChannelHandler
or an I/O thread.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.stream Class Description ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.timeout Class Description Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind.ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelEvent An I/O event or I/O request associated with aChannel
.ChannelException ARuntimeException
which is thrown when an I/O operation fails.ChannelFuture The result of an asynchronousChannel
I/O operation.ChannelFutureListener Listens to the result of aChannelFuture
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.LifeCycleAwareChannelHandler AChannelHandler
that is notified when it is added to or removed from aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelDownstreamHandler AChannelDownstreamHandler
which provides an individual handler method for each event type.SimpleChannelHandler AChannelHandler
which provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandler
which provides an individual handler method for each event type.WriteCompletionEvent AChannelEvent
which represents the notification of the completion of a write request on aChannel
. -
Classes in org.jboss.netty.channel used by org.jboss.netty.handler.traffic Class Description ChannelDownstreamHandler Handles or intercepts a downstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler Handles or intercepts aChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandler
can be added to one or moreChannelPipeline
s multiple times without a race condition.ChannelHandlerContext Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.ChannelStateEvent AChannelEvent
which represents the change of theChannel
state.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent
, and sends aChannelEvent
to the next handler in aChannelPipeline
.MessageEvent AChannelEvent
which represents the transmission or reception of a message.SimpleChannelHandler AChannelHandler
which provides an individual handler method for each event type.