Package org.jboss.netty.handler.codec.frame
package org.jboss.netty.handler.codec.frame
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.
-
ClassDescriptionAn
Exception
which is thrown when the received frame data can not be decoded by aFrameDecoder
implementation.A decoder that splits the receivedChannelBuffer
s by one or more delimiters.A set of commonly used delimiters forDelimiterBasedFrameDecoder
.A decoder that splits the receivedChannelBuffer
s by the fixed number of bytes.Decodes the receivedChannelBuffer
s into a meaningful frame object.A decoder that splits the receivedChannelBuffer
s dynamically by the value of the length field in the message.An encoder that prepends the length of the message.A decoder that splits the receivedChannelBuffer
s on line endings.AnException
which is thrown when the length of the frame decoded is greater than the maximum.