Uses of Class
io.netty5.handler.codec.CodecException
-
Packages that use CodecException Package Description io.netty5.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.netty5.handler.codec.compression io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames. -
-
Uses of CodecException in io.netty5.handler.codec
Subclasses of CodecException in io.netty5.handler.codec Modifier and Type Class Description class
CorruptedFrameException
AnDecoderException
which is thrown when the received frame data could not be decoded by an inbound handler.class
DecoderException
AnCodecException
which is thrown by a decoder.class
EncoderException
AnCodecException
which is thrown by an encoder.class
PrematureChannelClosureException
ACodecException
which is thrown when aChannel
is closed unexpectedly before the codec finishes handling the current message, such as missing response while waiting for a request.class
TooLongFrameException
AnDecoderException
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 a codec. -
Uses of CodecException in io.netty5.handler.codec.compression
Subclasses of CodecException in io.netty5.handler.codec.compression Modifier and Type Class Description class
CompressionException
AnEncoderException
that is raised when compression failed.class
DecompressionException
ADecoderException
that is raised when decompression failed. -
Uses of CodecException in io.netty5.handler.codec.http
Subclasses of CodecException in io.netty5.handler.codec.http Modifier and Type Class Description class
TooLongHttpContentException
AnTooLongFrameException
which is thrown when the length of the content decoded is greater than the allowed maximum.class
TooLongHttpHeaderException
AnTooLongFrameException
which is thrown when the length of the header decoded is greater than the allowed maximum.class
TooLongHttpLineException
AnTooLongFrameException
which is thrown when the length of the line decoded is greater than the allowed maximum. -
Uses of CodecException in io.netty5.handler.codec.http.websocketx
Subclasses of CodecException in io.netty5.handler.codec.http.websocketx Modifier and Type Class Description class
CorruptedWebSocketFrameException
AnDecoderException
which is thrown when the receivedWebSocketFrame
data could not be decoded by an inbound handler.
-