This commit is contained in:
Trustin Lee 2009-06-17 09:33:20 +00:00
parent 843b530c64
commit 29da430183
10 changed files with 18 additions and 14 deletions

View File

@ -26,8 +26,8 @@ package org.jboss.netty.channel;
* Creates a new {@link ChannelPipeline} for a new {@link Channel}. * Creates a new {@link ChannelPipeline} for a new {@link Channel}.
* <p> * <p>
* This interface was introduced to initialize the {@link ChannelPipeline} of * This interface was introduced to initialize the {@link ChannelPipeline} of
* the child channel accepted by a server-side, but it is safe to use it for * the child channel accepted by a {@link ServerChannel}, but it is safe to use
* any other purposes. * it for any other purposes.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)

View File

@ -41,8 +41,6 @@ import java.util.Map;
* <li>{@link #pipelineFactory(ChannelPipeline)}</li> * <li>{@link #pipelineFactory(ChannelPipeline)}</li>
* <li>{@link #succeededFuture(Channel)}</li> * <li>{@link #succeededFuture(Channel)}</li>
* <li>{@link #failedFuture(Channel, Throwable)}</li> * <li>{@link #failedFuture(Channel, Throwable)}</li>
* <li>{@link #messageEvent(Channel, ChannelFuture, Object)}</li>
* <li>{@link #messageEvent(Channel, ChannelFuture, Object, SocketAddress)}</li>
* </ul> * </ul>
* *
* <h3>Upstream and downstream event generation</h3> * <h3>Upstream and downstream event generation</h3>

View File

@ -23,7 +23,7 @@
package org.jboss.netty.channel; package org.jboss.netty.channel;
/** /**
* The default {@link ChannelStateEvent} implementation. * The default downstream {@link ChannelStateEvent} implementation.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)

View File

@ -27,7 +27,7 @@ import java.net.SocketAddress;
import org.jboss.netty.util.internal.StringUtil; import org.jboss.netty.util.internal.StringUtil;
/** /**
* The default {@link MessageEvent} implementation. * The default downstream {@link MessageEvent} implementation.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)

View File

@ -25,7 +25,7 @@ package org.jboss.netty.channel;
/** /**
* The {@link ReceiveBufferSizePredictor} that always yields the same buffer * The {@link ReceiveBufferSizePredictor} that always yields the same buffer
* size prediction. * size prediction. This predictor ignores the feed back from the I/O thread.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)

View File

@ -34,8 +34,8 @@ import org.jboss.netty.buffer.ChannelBuffer;
* effective the memory utilization will be. * effective the memory utilization will be.
* <p> * <p>
* Once a read operation is performed and the actual number of read bytes is * Once a read operation is performed and the actual number of read bytes is
* known, an I/O thread should call {@link #previousReceiveBufferSize(int)} to * known, an I/O thread will call {@link #previousReceiveBufferSize(int)} to
* update the predictor so it can predict more accurately. * update the predictor so it can predict more accurately next time.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)

View File

@ -22,11 +22,17 @@
*/ */
package org.jboss.netty.channel; package org.jboss.netty.channel;
import org.jboss.netty.channel.socket.ServerSocketChannel;
/** /**
* A {@link Channel} that accepts an incoming connection attempt and creates
* its child {@link Channel}s by accepting them. {@link ServerSocketChannel} is
* a good example.
*
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)
* @version $Rev$, $Date$ * @version $Rev$, $Date$
*/ */
public interface ServerChannel extends Channel{ public interface ServerChannel extends Channel {
// This is a tag interface. // This is a tag interface.
} }

View File

@ -22,9 +22,9 @@
*/ */
package org.jboss.netty.channel; package org.jboss.netty.channel;
/** /**
* A {@link ChannelFactory} that creates a {@link ServerChannel}.
*
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)
* *

View File

@ -25,7 +25,7 @@ package org.jboss.netty.channel;
import static org.jboss.netty.channel.Channels.*; import static org.jboss.netty.channel.Channels.*;
/** /**
* The default {@link ChannelStateEvent} implementation. * The default upstream {@link ChannelStateEvent} implementation.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)

View File

@ -29,7 +29,7 @@ import java.net.SocketAddress;
import org.jboss.netty.util.internal.StringUtil; import org.jboss.netty.util.internal.StringUtil;
/** /**
* The default {@link MessageEvent} implementation. * The default upstream {@link MessageEvent} implementation.
* *
* @author The Netty Project (netty-dev@lists.jboss.org) * @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com) * @author Trustin Lee (tlee@redhat.com)