| Package | Description | 
|---|---|
| io.netty.channel | The core channel API which is asynchronous and event-driven abstraction of
 various transports such as a
 NIO Channel. | 
| io.netty.handler.codec | 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. | 
| io.netty.handler.codec.base64 | |
| io.netty.handler.codec.bytes | Encoder and decoder which transform an array of bytes into a
  ByteBufand vice versa. | 
| io.netty.handler.codec.compression | |
| io.netty.handler.codec.http | Encoder, decoder and their related message types for HTTP. | 
| io.netty.handler.codec.http.cors | This package contains Cross Origin Resource Sharing (CORS) related classes. | 
| io.netty.handler.codec.http.websocketx | Encoder, decoder, handshakers and their related message types for
 Web Socket data frames. | 
| io.netty.handler.codec.marshalling | Decoder and Encoder which uses JBoss Marshalling. | 
| io.netty.handler.codec.protobuf | Encoder and decoder which transform a
 Google Protocol Buffers
  Messageinto aByteBufand vice versa. | 
| io.netty.handler.codec.rtsp | An RTSP
 extension based on the HTTP codec. | 
| io.netty.handler.codec.sctp | Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP. | 
| io.netty.handler.codec.serialization | Encoder, decoder and their compatibility stream implementations which
 transform a  Serializableobject into a byte buffer and
 vice versa. | 
| io.netty.handler.codec.socks | Encoder, decoder and their related message types for Socks. | 
| io.netty.handler.codec.spdy | Encoder, decoder, session handler and their related message types for the SPDY protocol. | 
| io.netty.handler.codec.string | Encoder and decoder which transform a  Stringinto aByteBufand vice versa. | 
| io.netty.handler.flush | Package to control flush behavior. | 
| io.netty.handler.logging | Logs a  io.netty.channel.ChannelEventfor debugging purpose. | 
| io.netty.handler.ssl | SSL ·
 TLS implementation based on  SSLEngine | 
| io.netty.handler.stream | Writes very large data stream asynchronously neither spending a lot of
 memory nor getting  OutOfMemoryError. | 
| io.netty.handler.timeout | Adds support for read and write timeout and idle connection notification
 using a  Timer. | 
| io.netty.handler.traffic | Implementation of a Traffic Shaping Handler and Dynamic Statistics. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CombinedChannelDuplexHandler<I extends ChannelInboundHandler,O extends ChannelOutboundHandler> | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ChannelDuplexHandlerChannelHandlerimplementation which represents a combination out of aChannelInboundHandlerand
 theChannelOutboundHandler. | 
| class  | ChannelOutboundHandlerAdapterSkeleton implementation of a  ChannelOutboundHandler. | 
| class  | CombinedChannelDuplexHandler<I extends ChannelInboundHandler,O extends ChannelOutboundHandler> | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ByteToMessageCodec<I>A Codec for on-the-fly encoding/decoding of bytes to messages and vise-versa. | 
| class  | LengthFieldPrependerAn encoder that prepends the length of the message. | 
| class  | MessageToByteEncoder<I>ChannelOutboundHandlerAdapterwhich encodes message in a stream-like fashion from one message to anByteBuf. | 
| class  | MessageToMessageCodec<INBOUND_IN,OUTBOUND_IN>A Codec for on-the-fly encoding/decoding of message. | 
| class  | MessageToMessageEncoder<I>ChannelOutboundHandlerAdapterwhich encodes from one message to an other message
 For example here is an implementation which decodes anIntegerto anString. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | Base64Encoder | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ByteArrayEncoderEncodes the requested array of bytes into a  ByteBuf. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | JdkZlibEncoderCompresses a  ByteBufusing the deflate algorithm. | 
| class  | JZlibEncoderCompresses a  ByteBufusing the deflate algorithm. | 
| class  | SnappyFramedEncoderCompresses a  ByteBufusing the Snappy framing format. | 
| class  | ZlibEncoderCompresses a  ByteBufusing the deflate algorithm. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | HttpClientCodecA combination of  HttpRequestEncoderandHttpResponseDecoderwhich enables easier client side HTTP implementation. | 
| class  | HttpContentCompressorCompresses an  HttpMessageand anHttpContentingzipordeflateencoding while respecting the"Accept-Encoding"header. | 
| class  | HttpContentEncoderEncodes the content of the outbound  HttpResponseandHttpContent. | 
| class  | HttpObjectEncoder<H extends HttpMessage> | 
| class  | HttpRequestEncoder | 
| class  | HttpResponseEncoder | 
| class  | HttpServerCodecA combination of  HttpRequestDecoderandHttpResponseEncoderwhich enables easier server side HTTP implementation. | 
| class  | HttpServerKeepAliveHandlerHttpServerKeepAliveHandler helps close persistent connections when appropriate. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CorsHandlerHandles Cross Origin Resource Sharing (CORS) requests. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | WebSocketFrameEncoderMarker interface which all WebSocketFrame encoders need to implement. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | WebSocket00FrameEncoderEncodes a  WebSocketFrameinto aByteBuf. | 
| 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  | CompatibleMarshallingEncoderMessageToByteEncoderimplementation which uses JBoss Marshalling to marshal
 an Object. | 
| class  | MarshallingEncoderMessageToByteEncoderimplementation which uses JBoss Marshalling to marshal
 an Object. | 
| Modifier and Type | Class and Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| class  | ProtobufEncoder | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| class  | ProtobufVarint32LengthFieldPrependerAn encoder that prepends the the Google Protocol Buffers
 
 Uses of ChannelOutboundHandler in io.netty.handler.codec.rtsp
 Uses of ChannelOutboundHandler in io.netty.handler.codec.sctp
 Uses of ChannelOutboundHandler in io.netty.handler.codec.serialization
 Uses of ChannelOutboundHandler in io.netty.handler.codec.socks
 Uses of ChannelOutboundHandler in io.netty.handler.codec.spdy
 Uses of ChannelOutboundHandler in io.netty.handler.codec.string
 Uses of ChannelOutboundHandler in io.netty.handler.flush
 Uses of ChannelOutboundHandler in io.netty.handler.logging
 Uses of ChannelOutboundHandler in io.netty.handler.ssl
 Uses of ChannelOutboundHandler in io.netty.handler.stream
 Uses of ChannelOutboundHandler in io.netty.handler.timeout
 Uses of ChannelOutboundHandler in io.netty.handler.traffic
 Copyright © 2008–2018 The Netty Project. All rights reserved. |