EnumerationNIOCore
ByteToMessageDecoderError
Common errors thrown by ByteToMessageDecoder
s.
enum ByteToMessageDecoderError
Common errors thrown by ByteToMessageDecoder
s.
enum ByteToMessageDecoderError
case dataReceivedInErrorState(Error, ByteBuffer)
More data has been received by a ByteToMessageHandler
despite the fact that an error has previously been emitted. The associated Error
is the error previously emitted and the ByteBuffer
is the extra data that has been received. The common cause for this error to be emitted is the user not having torn down the Channel
after previously an Error
has been sent through the pipeline using fireErrorCaught
.
case leftoverDataWhenDone(ByteBuffer)
This error can be thrown by ByteToMessageDecoder
s if there was unexpectedly some left-over data when the ByteToMessageDecoder
was removed from the pipeline or the Channel
was closed.
struct PayloadTooLargeError
This error can be thrown by ByteToMessageDecoder
s if the incoming payload is larger than the max specified.