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 openChannels 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-sideSocketChanneland 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-encodedStringorChannelBufferinto a decodedChannelBufferand vice versa.org.jboss.netty.handler.codec.compression Encoder and decoder which compresses and decompressesChannelBuffers 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 BuffersMessageinto aChannelBufferand vice versa.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoderwhich 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 aSerializableobject 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 aStringinto aChannelBufferand 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 aChannelEventfor 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 onSSLEngineorg.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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChildChannelStateEvent AChannelEventwhich represents the notification of the state of a childChannel.DefaultChannelFuture The defaultChannelFutureimplementation.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 skeletalChannelimplementation.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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelException ARuntimeExceptionwhich is thrown when an I/O operation fails.ChannelFactory The main interface to a transport that creates aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineException AChannelExceptionwhich is thrown when aChannelPipelinefailed to process aChannelEventor when aChannelPipelineFactoryfailed to initialize aChannelPipeline.ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelSink Receives and processes the terminal downstreamChannelEvents.ChannelState The current or future state of aChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChildChannelStateEvent AChannelEventwhich represents the notification of the state of a childChannel.CompleteChannelFuture A skeletalChannelFutureimplementation which represents aChannelFuturewhich has been completed already.DefaultChannelFuture The defaultChannelFutureimplementation.DefaultChannelPipeline.DefaultChannelHandlerContext ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.FileRegion A region of a file that is sent via aChannelwhich supports zero-copy file transfer.MessageEvent AChannelEventwhich 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 AChannelEventwhich 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 asynchronousChannelI/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 skeletalChannelimplementation.AbstractChannelSink A skeletalChannelSinkimplementation.AbstractServerChannel A skeletal server-sideChannelimplementation.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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelPipeline ChannelSink Receives and processes the terminal downstreamChannelEvents.MessageEvent AChannelEventwhich represents the transmission or reception of a message.ServerChannel ServerChannelFactory AChannelFactorythat 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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelPipeline DefaultChannelConfig The defaultSocketChannelConfigimplementation.DefaultChannelFuture The defaultChannelFutureimplementation.DefaultServerChannelConfig The defaultServerSocketChannelConfigimplementation.ReceiveBufferSizePredictor Predicts the number of readable bytes in the receive buffer of aChannel.ReceiveBufferSizePredictorFactory Creates a newReceiveBufferSizePredictor.ServerChannel ServerChannelFactory AChannelFactorythat creates aServerChannel. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.socket.http Class Description AbstractChannel A skeletalChannelimplementation.AbstractChannelSink A skeletalChannelSinkimplementation.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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelSink Receives and processes the terminal downstreamChannelEvents.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 skeletalChannelimplementation.AbstractChannelSink A skeletalChannelSinkimplementation.AbstractServerChannel A skeletal server-sideChannelimplementation.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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelPipeline ChannelSink Receives and processes the terminal downstreamChannelEvents.DefaultChannelConfig The defaultSocketChannelConfigimplementation.FileRegion A region of a file that is sent via aChannelwhich supports zero-copy file transfer.MessageEvent AChannelEventwhich 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 AChannelFactorythat creates aServerChannel. -
Classes in org.jboss.netty.channel used by org.jboss.netty.channel.socket.oio Class Description AbstractChannel A skeletalChannelimplementation.AbstractChannelSink A skeletalChannelSinkimplementation.AbstractServerChannel A skeletal server-sideChannelimplementation.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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelPipeline ChannelSink Receives and processes the terminal downstreamChannelEvents.ServerChannel ServerChannelFactory AChannelFactorythat 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich provides an individual handler method for each event type.WriteCompletionEvent AChannelEventwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelassociated 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 asynchronousChannelI/O operation.ChannelFutureListener Listens to the result of aChannelFuture.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineFactory Creates a newChannelPipelinefor a newChannel.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat 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 skeletalChannelimplementation.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 aChannelEventto 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 aChannelassociated with a certain communication entity such as a network socket.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelPipelineException AChannelExceptionwhich is thrown when aChannelPipelinefailed to process aChannelEventor when aChannelPipelineFactoryfailed to initialize aChannelPipeline.ChannelSink Receives and processes the terminal downstreamChannelEvents.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.DefaultChannelPipeline The defaultChannelPipelineimplementation. -
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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelHandler AChannelHandlerwhich provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelFutureListener Listens to the result of aChannelFuture.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelPipeline ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.MessageEvent AChannelEventwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelFutureListener Listens to the result of aChannelFuture.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelHandler AChannelHandlerwhich provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto 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 asynchronousChannelI/O operation.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelHandler AChannelHandlerwhich provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelFutureListener Listens to the result of aChannelFuture.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.DefaultChannelFuture The defaultChannelFutureimplementation.ExceptionEvent AChannelEventwhich represents the notification of an exception raised by aChannelHandleror an I/O thread.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelEvent An I/O event or I/O request associated with aChannel.ChannelException ARuntimeExceptionwhich is thrown when an I/O operation fails.ChannelFuture The result of an asynchronousChannelI/O operation.ChannelFutureListener Listens to the result of aChannelFuture.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.LifeCycleAwareChannelHandler AChannelHandlerthat is notified when it is added to or removed from aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelDownstreamHandler AChannelDownstreamHandlerwhich provides an individual handler method for each event type.SimpleChannelHandler AChannelHandlerwhich provides an individual handler method for each event type.SimpleChannelUpstreamHandler AChannelUpstreamHandlerwhich provides an individual handler method for each event type.WriteCompletionEvent AChannelEventwhich 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 aChannelEventto the next handler in aChannelPipeline.ChannelHandler Handles or intercepts aChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.ChannelHandler.Sharable Indicates that the same instance of the annotatedChannelHandlercan be added to one or moreChannelPipelines multiple times without a race condition.ChannelHandlerContext Enables aChannelHandlerto interact with itsChannelPipelineand other handlers.ChannelStateEvent AChannelEventwhich represents the change of theChannelstate.ChannelUpstreamHandler Handles or intercepts an upstreamChannelEvent, and sends aChannelEventto the next handler in aChannelPipeline.MessageEvent AChannelEventwhich represents the transmission or reception of a message.SimpleChannelHandler AChannelHandlerwhich provides an individual handler method for each event type.