Buffers.See: Description
| Class | Description |
|---|---|
| BufferCodec<IN,OUT> |
Implementations of a BufferCodec are codec manipulating Buffer sources
|
| ByteArrayCodec | |
| Codec<SRC,IN,OUT> |
Implementations of a Codec are responsible for decoding a
SRC into an
instance of IN and passing that to the given Consumer. |
| DelimitedCodec<IN,OUT> | |
| Frame | |
| FrameCodec |
Codec for decoding data into length-field-based Frames. |
| JavaSerializationCodec<T> |
Codec to transform Java objects into Buffers and visa-versa. |
| LengthFieldCodec<IN,OUT> |
A codec that uses a length-field at the start of each chunk to denote the chunk's size.
|
| PassThroughCodec<SRC> |
A simple
Codec that uses the source object as both input and output. |
| SerializationCodec<E,IN,OUT> |
Abstract base class for
Codec Codecs that perform serialization of objects. |
| StandardCodecs |
A selection of standard codecs.
|
| StringCodec |
| Enum | Description |
|---|---|
| FrameCodec.LengthField |
Buffers.