| Package | Description | 
|---|---|
| org.jboss.netty.handler.codec.base64 | Encoder and decoder which transform a
 Base64-encoded
  StringorChannelBufferinto a decodedChannelBufferand vice versa. | 
| org.jboss.netty.handler.codec.compression | Encoder and decoder which compresses and decompresses  ChannelBuffers
 in a compression format such as zlib
 and gzip. | 
| 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.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 Buffers
  Messageinto aChannelBufferand vice versa. | 
| 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  Serializableobject 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.string | Encoder and decoder which transform a  Stringinto aChannelBufferand vice versa. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | Base64EncoderEncodes a  ChannelBufferinto a Base64-encodedChannelBuffer. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | JdkZlibEncoderCompresses a  ChannelBufferusing the deflate algorithm. | 
| class  | ZlibEncoderCompresses a  ChannelBufferusing the deflate algorithm. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | LengthFieldPrependerAn encoder that prepends the length of the message. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | HttpMessageEncoder | 
| class  | HttpRequestEncoder | 
| class  | HttpResponseEncoder | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | WebSocketFrameEncoderDeprecated. 
 Use org.jboss.netty.handler.codec.http.websocketx instead.
 Encodes a  WebSocketFrameinto aChannelBuffer.
 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  | WebSocket00FrameEncoderEncodes a  WebSocketFrameinto aChannelBuffer. | 
| class  | WebSocket07FrameEncoder
 Encodes a web socket frame into wire protocol version 7 format. | 
| class  | WebSocket08FrameEncoder
 Encodes a web socket frame into wire protocol version 8 format. | 
| class  | WebSocket13FrameEncoder
 Encodes a web socket frame into wire protocol version 13 format. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CompatibleMarshallingEncoderOneToOneEncoderimplementation which uses JBoss Marshalling to marshal
 an Object. | 
| class  | MarshallingEncoderOneToOneEncoderimplementation which uses JBoss Marshalling to marshal
 an Object. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | OneToOneStrictEncoderSpecial  OneToOneEncoderwhich enforce strict ordering of encoding and writing. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ProtobufEncoder | 
| class  | ProtobufVarint32LengthFieldPrependerAn encoder that prepends the the Google Protocol Buffers
 Base
 128 Varints integer length field. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | RtspMessageEncoderEncodes an RTSP message represented in  HttpMessageinto
 aChannelBuffer. | 
| class  | RtspRequestEncoderEncodes an RTSP request represented in  HttpRequestinto
 aChannelBuffer. | 
| class  | RtspResponseEncoderEncodes an RTSP response represented in  HttpResponseinto
 aChannelBuffer. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CompatibleObjectEncoderAn encoder which serializes a Java object into a  ChannelBuffer(interoperability version). | 
| class  | ObjectEncoderAn encoder which serializes a Java object into a  ChannelBuffer. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | SocksMessageEncoderEncodes an  SocksMessageinto aChannelBuffer. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | StringEncoderEncodes the requested  Stringinto aChannelBuffer. | 
Copyright © 2008-2014 The Netty Project. All Rights Reserved.