This commit is contained in:
Trustin Lee 2009-06-18 11:31:31 +00:00
parent cad86962ef
commit 230113c0c6
2 changed files with 8 additions and 8 deletions

View File

@ -27,11 +27,11 @@ import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelHandlerContext;
/**
* A {@link FrameDecoder} which decodes the received {@link ChannelBuffer}s
* into the {@link ChannelBuffer}s split by one or more delimiters. It is
* particularly useful for decoding the frames which ends with a delimiter
* such as {@link Delimiters#nulDelimiter() NUL} or
* {@linkplain Delimiters#lineDelimiter() newline characters}.
* A decoder that decodes the received {@link ChannelBuffer}s into the
* {@link ChannelBuffer}s split by one or more delimiters. It is particularly
* useful for decoding the frames which ends with a delimiter such as
* {@link Delimiters#nulDelimiter() NUL} or
* {@linkplain Delimiters#lineDelimiter() newline characters}.
*
* <h3>Predefined delimiters</h3>
* <p>

View File

@ -27,9 +27,9 @@ import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelHandlerContext;
/**
* A {@link FrameDecoder} which decodes the received {@link ChannelBuffer}s
* into the {@link ChannelBuffer}s of the fixed length. For example, if you
* received the following four fragmented packets:
* A decoder that decodes the received {@link ChannelBuffer}s into the
* {@link ChannelBuffer}s of the fixed length. For example, if you received
* the following four fragmented packets:
* <pre>
* +---+----+------+----+
* | A | BC | DEFG | HI |