| 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.json |
JSON specific codecs.
|
| io.netty.handler.codec.serialization |
Encoder, decoder and their compatibility stream implementations which
transform a
Serializable object into a byte buffer and
vice versa. |
| 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 |
JsonObjectDecoder
Splits a byte stream of JSON objects and arrays into individual objects/arrays and passes them up the
ChannelPipeline. |
| Modifier and Type | Class and Description |
|---|---|
class |
ObjectDecoder
Deprecated.
This class has been deprecated with no replacement,
because serialization can be a security liability
|
Copyright © 2008–2024 The Netty Project. All rights reserved.