| Package | Description |
|---|---|
| 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.compression | |
| io.netty.handler.codec.dns |
DNS codec.
|
| io.netty.handler.codec.haproxy |
Decodes an HAProxy proxy protocol header
|
| io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
| io.netty.handler.codec.http.websocketx |
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
|
| io.netty.handler.codec.http2 |
Handlers for sending and receiving HTTP/2 frames.
|
| io.netty.handler.codec.json |
JSON specific codecs.
|
| io.netty.handler.codec.marshalling |
Decoder and Encoder which uses JBoss Marshalling.
|
| io.netty.handler.codec.memcache |
Common superset of ascii and binary classes.
|
| io.netty.handler.codec.memcache.binary |
Implementations and Interfaces for the Memcache Binary protocol.
|
| io.netty.handler.codec.mqtt |
Encoder, decoder and different Message Types for MQTT.
|
| io.netty.handler.codec.protobuf |
Encoder and decoder which transform a
Google Protocol Buffers
Message and MessageNano into a
ByteBuf and vice versa. |
| io.netty.handler.codec.redis |
Encoder, decoder for Redis.
|
| io.netty.handler.codec.rtsp |
An RTSP
extension based on the HTTP codec.
|
| io.netty.handler.codec.serialization |
Encoder, decoder and their compatibility stream implementations which
transform a
Serializable object into a byte buffer and
vice versa. |
| io.netty.handler.codec.smtp |
SMTP codec.
|
| io.netty.handler.codec.socks |
Encoder, decoder and their related message types for Socks.
|
| io.netty.handler.codec.socksx |
Encoder, decoder and their related message types for SOCKS protocol.
|
| io.netty.handler.codec.socksx.v4 |
Encoder, decoder and their related message types for SOCKSv4 protocol.
|
| io.netty.handler.codec.socksx.v5 |
Encoder, decoder and their related message types for SOCKSv5 protocol.
|
| io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
| io.netty.handler.codec.stomp |
STOMP codec
|
| io.netty.handler.codec.xml |
XML codec provides asynchronous and non-blocking XML parser based on the
Aalto XML parser.
|
| io.netty.handler.ssl |
| Modifier and Type | Class and Description |
|---|---|
class |
DelimiterBasedFrameDecoder
A decoder that splits the received
ByteBufs by one or more
delimiters. |
class |
FixedLengthFrameDecoder
A decoder that splits the received
ByteBufs by the fixed number
of bytes. |
class |
LengthFieldBasedFrameDecoder
A decoder that splits the received
ByteBufs dynamically by the
value of the length field in the message. |
class |
LineBasedFrameDecoder
A decoder that splits the received
ByteBufs on line endings. |
class |
ReplayingDecoder<S>
A specialized variation of
ByteToMessageDecoder which enables implementation
of a non-blocking decoder in the blocking I/O paradigm. |
| Modifier and Type | Class and Description |
|---|---|
class |
BrotliDecoder
Decompresses a
ByteBuf encoded with the brotli format. |
class |
Bzip2Decoder
Uncompresses a
ByteBuf encoded with the Bzip2 format. |
class |
FastLzFrameDecoder
Uncompresses a
ByteBuf encoded by FastLzFrameEncoder using the FastLZ algorithm. |
class |
JdkZlibDecoder
Decompress a
ByteBuf using the inflate algorithm. |
class |
JZlibDecoder |
class |
Lz4FrameDecoder
Uncompresses a
ByteBuf encoded with the LZ4 format. |
class |
LzfDecoder
Uncompresses a
ByteBuf encoded with the LZF format. |
class |
SnappyFramedDecoder
Deprecated.
Use
SnappyFrameDecoder instead. |
class |
SnappyFrameDecoder
Uncompresses a
ByteBuf encoded with the Snappy framing format. |
class |
|