Improved Javadoc of OneToOneDecoder

This commit is contained in:
Trustin Lee 2009-10-21 05:02:06 +00:00
parent 3f8cf952d2
commit 25fefa16e8

View File

@ -30,8 +30,9 @@ import org.jboss.netty.handler.codec.frame.FrameDecoder;
/**
* Transforms a received message into another message. Please note that this
* decoder must be used with a proper {@link FrameDecoder} such as
* {@link DelimiterBasedFrameDecoder} if you are using a stream-based transport
* such as TCP/IP. A typical setup for TCP/IP would be:
* {@link DelimiterBasedFrameDecoder} or you must implement proper framing
* mechanism by yourself if you are using a stream-based transport such as
* TCP/IP. A typical setup for TCP/IP would be:
* <pre>
* {@link ChannelPipeline} pipeline = ...;
*