A little bit of duplication to help understanding of asynchronous operation

This commit is contained in:
Trustin Lee 2008-09-24 10:49:39 +00:00
parent d0d99ff6bc
commit 274fa4aac5

View File

@ -40,6 +40,14 @@ import java.util.UUID;
* associated with the channel.</li>
* </ul>
*
* <h3>All I/O operations are asynchronous.</h3>
*
* All I/O operations in Netty are asynchronous. It means any I/O calls will
* return immediately with no guarantee that the requested I/O operation has
* been completed at the end of the call. Instead, you will be returned with
* a {@link ChannelFuture} instance which tells you when the requested I/O
* operation has succeeded, failed, or canceled.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*