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 |
Modifier and Type | Class and Description |
---|---|
class |
CorruptedFrameException
An
DecoderException which is thrown when the received frame data could not be decoded by
an inbound handler. |
class |
DecoderException
An
CodecException which is thrown by a decoder. |
class |
EncoderException
An
CodecException which is thrown by an encoder. |
class |
PrematureChannelClosureException
A
CodecException which is thrown when a Channel is closed unexpectedly before
the codec finishes handling the current message, such as missing response while waiting for a
request. |
class |
TooLongFrameException
An
DecoderException which is thrown when the length of the frame
decoded is greater than the allowed maximum. |
class |
UnsupportedMessageTypeException
Thrown if an unsupported message is received by an codec.
|
Modifier and Type | Class and Description |
---|---|
class |
CompressionException
An
EncoderException that is raised when compression failed. |
class |
DecompressionException
A
DecoderException that is raised when decompression failed. |
Copyright © 2008–2019 The Netty Project. All rights reserved.