| Modifier and Type | Class and Description |
|---|---|
class |
DiscardClientHandler
Handles a client-side channel.
|
class |
DiscardServerHandler
Handles a server-side channel.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EchoClientHandler
Handler implementation for the echo client.
|
class |
EchoServerHandler
Handler implementation for the echo server.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BigIntegerDecoder
Decodes the binary representation of a
BigInteger prepended
with a magic number ('F' or 0x46) and a 32-bit integer length prefix into a
BigInteger instance. |
class |
FactorialClientHandler
Handler for a client-side channel.
|
class |
FactorialServerHandler
Handler for a server-side channel.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpStaticFileServerHandler
A simple handler that serves incoming HTTP requests to send their respective
HTTP responses.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpHelloWorldServerHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
HttpSnoopClientHandler |
class |
HttpSnoopServerHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
HttpUploadClientHandler |
class |
HttpUploadServerHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
AutobahnServerHandler
Handles handshakes and messages
|
| Modifier and Type | Class and Description |
|---|---|
class |
WebSocketClientHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
WebSocketServerHandler
Handles handshakes and messages
|
| Modifier and Type | Class and Description |
|---|---|
class |
LocalTimeClientHandler |
class |
LocalTimeServerHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
ObjectEchoClientHandler
Handler implementation for the object echo client.
|
class |
ObjectEchoServerHandler
Handles both client-side and server-side handler depending on which
constructor was called.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PortUnificationServerHandler
Manipulates the current pipeline dynamically to switch protocols or enable
SSL or GZIP.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HexDumpProxyInboundHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
QuoteOfTheMomentClientHandler |
class |
QuoteOfTheMomentServerHandler |
| Modifier and Type | Class and Description |
|---|---|
class |
SecureChatClientHandler
Handles a client-side channel.
|
class |
SecureChatServerHandler
Handles a server-side channel.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TelnetClientHandler
Handles a client-side channel.
|
class |
TelnetServerHandler
Handles a server-side channel.
|
| Modifier and Type | Class and Description |
|---|---|
class |
UptimeClientHandler
Keep reconnecting to the server while printing out the current uptime and
connection attempt status.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DelimiterBasedFrameDecoder
A decoder that splits the received
ChannelBuffers by one or more
delimiters. |
class |
FixedLengthFrameDecoder
A decoder that splits the received
ChannelBuffers by the fixed number
of bytes. |
class |
FrameDecoder
Decodes the received
ChannelBuffers into a meaningful frame object. |
class |
LengthFieldBasedFrameDecoder
A decoder that splits the received
ChannelBuffers dynamically by the
value of the length field in the message. |
class |
LineBasedFrameDecoder
A decoder that splits the received
ChannelBuffers on line endings. |
| Modifier and Type | Class and Description |
|---|---|
class |
HttpChunkAggregator
A
ChannelHandler that aggregates an HttpMessage
and its following HttpChunks into a single HttpMessage with
no following HttpChunks. |
class |
HttpContentDecoder
Decodes the content of the received
HttpRequest and HttpChunk. |
class |
HttpContentDecompressor
|
class |
HttpMessageDecoder
|
class |
HttpRequestDecoder
|
class |
HttpResponseDecoder
|
| Modifier and Type | Class and Description |
|---|---|
class |
WebSocketFrameDecoder
Deprecated.
Use org.jboss.netty.handler.codec.http.websocketx instead.
Decodes
ChannelBuffers into WebSocketFrames.
For the detailed instruction on adding add Web Socket support to your HTTP
server, take a look into the WebSocketServer example located in the
|
| Modifier and Type | Class and Description |
|---|---|
class |
WebSocket00FrameDecoder
Decodes
ChannelBuffers into WebSocketFrames. |
class |
WebSocket07FrameDecoder
Decodes a web socket frame from wire protocol version 7 format.
|
class |
WebSocket08FrameDecoder
Decodes a web socket frame from wire protocol version 8 format.
|
class |
WebSocket13FrameDecoder
Decodes a web socket frame from wire protocol version 13 format.
|
class |
WebSocketServerProtocolHandler
Handles WebSocket control frames (Close, Ping, Pong) and data frames (Text and Binary) are passed
to the next handler in the pipeline.
|
class |
WebSocketServerProtocolHandshakeHandler
Handles the HTTP handshake (the HTTP Upgrade request)
|
| Modifier and Type | Class and Description |
|---|---|
class |
CompatibleMarshallingDecoder
|
class |
MarshallingDecoder
Decoder which MUST be used with
MarshallingEncoder. |
| Modifier and Type | Class and Description |
|---|---|
class |
ProtobufVarint32FrameDecoder
A decoder that splits the received
ChannelBuffers dynamically by the
value of the Google Protocol Buffers
Base
128 Varints integer length field in the message. |
| Modifier and Type | Class and Description |
|---|---|
class |
ReplayingDecoder<T extends Enum<T>>
A specialized variation of
FrameDecoder which enables implementation
of a non-blocking decoder in the blocking I/O paradigm. |
| Modifier and Type | Class and Description |
|---|---|
class |
RtspMessageDecoder
Decodes
ChannelBuffers into RTSP messages represented in
HttpMessages. |
class |
RtspRequestDecoder
Decodes
ChannelBuffers into RTSP requests represented in
HttpRequests. |
class |
RtspResponseDecoder
Decodes
ChannelBuffers into RTSP responses represented in
HttpResponses. |
| Modifier and Type | Class and Description |
|---|---|
class |
CompatibleObjectDecoder
Deprecated.
This decoder has a known critical bug which fails to decode and
raises a random exception in some circumstances. Avoid to use
it whenever you can. The only workaround is to replace
CompatibleObjectEncoder, CompatibleObjectDecoder,
ObjectInputStream, and ObjectOutputStream with
ObjectEncoder, ObjectDecoder,
ObjectEncoderOutputStream, and
ObjectDecoderInputStream respectively. This workaround
requires both a client and a server to be modified. |
class |
ObjectDecoder
A decoder which deserializes the received
ChannelBuffers into Java
objects. |
| Modifier and Type | Class and Description |
|---|---|
class |
SocksAuthRequestDecoder
Decodes
ChannelBuffers into SocksAuthRequest. |
class |
SocksAuthResponseDecoder
Decodes
ChannelBuffers into SocksAuthResponse. |
class |
SocksCmdRequestDecoder
Decodes
ChannelBuffers into SocksCmdRequest. |
class |
SocksCmdResponseDecoder
Decodes
ChannelBuffers into SocksCmdResponse. |
class |
SocksInitRequestDecoder
Decodes
ChannelBuffers into SocksInitRequest. |
class |
SocksInitResponseDecoder
Decodes
ChannelBuffers into SocksInitResponse. |
| Modifier and Type | Class and Description |
|---|---|
class |
SpdyFrameCodec
A
ChannelHandler that encodes and decodes SPDY Frames. |
class |
SpdySessionHandler
Manages streams within a SPDY session.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BlockingReadHandler<E>
Emulates blocking read operation.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SslHandler
|
| Modifier and Type | Class and Description |
|---|---|
class |
IdleStateAwareChannelUpstreamHandler
An extended
SimpleChannelUpstreamHandler that adds the handler method
for an IdleStateEvent. |
class |
IdleStateHandler
Triggers an
IdleStateEvent when a Channel has not performed
read, write, or both operation for a while. |
class |
ReadTimeoutHandler
Raises a
ReadTimeoutException when no data was read within a certain
period of time. |
Copyright © 2008–2016 The Netty Project. All rights reserved.