| Package | Description |
|---|---|
| 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.websocket | |
| 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.protobuf |
Encoder and decoder which transform a
Google Protocol Buffers
Message into a ChannelBuffer
and vice versa. |
| org.jboss.netty.handler.codec.replay |
Specialized variation of
FrameDecoder
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 a
Serializable 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.ssl |
| 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 |
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 |
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.
|
| 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 |
SpdyFrameDecoder
Decodes
ChannelBuffers into SPDY Data and Control Frames. |
| Modifier and Type | Class and Description |
|---|---|
class |
SslHandler
|
Copyright © 2008-2014 The Netty Project. All Rights Reserved.