More cross-referencing
This commit is contained in:
parent
f9778a8dad
commit
eef1c1d84d
@ -25,7 +25,7 @@ package org.jboss.netty.channel;
|
|||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the current or requested state of a {@link Channel}.
|
* Represents the current or future state of a {@link Channel}.
|
||||||
* <p>
|
* <p>
|
||||||
* The state of a {@link Channel} is interpreted differently depending on the
|
* The state of a {@link Channel} is interpreted differently depending on the
|
||||||
* {@linkplain ChannelStateEvent#getValue() value} of a {@link ChannelStateEvent}
|
* {@linkplain ChannelStateEvent#getValue() value} of a {@link ChannelStateEvent}
|
||||||
|
@ -27,7 +27,9 @@ package org.jboss.netty.channel;
|
|||||||
* A {@link ChannelEvent} which represents the change of the {@link Channel}
|
* A {@link ChannelEvent} which represents the change of the {@link Channel}
|
||||||
* state. It can mean the notification of a change or the request for a
|
* state. It can mean the notification of a change or the request for a
|
||||||
* change, depending on whether it is a upstream event or a downstream event
|
* change, depending on whether it is a upstream event or a downstream event
|
||||||
* respectively.
|
* respectively. Please refer to the {@link ChannelEvent} documentation to
|
||||||
|
* find out what a upstream event and a downstream event are and what
|
||||||
|
* fundamental differences they have.
|
||||||
*
|
*
|
||||||
* @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)
|
||||||
|
@ -24,7 +24,9 @@ package org.jboss.netty.channel;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@link ChannelEvent} which represents the notification of the state of
|
* A {@link ChannelEvent} which represents the notification of the state of
|
||||||
* a child {@link Channel}. This event is allowed to go upstream only.
|
* a child {@link Channel}. This event is for going upstream only. Please
|
||||||
|
* refer to the {@link ChannelEvent} documentation to find out what a upstream
|
||||||
|
* event and a downstream event are and what fundamental differences they have.
|
||||||
*
|
*
|
||||||
* @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)
|
||||||
|
@ -24,8 +24,10 @@ package org.jboss.netty.channel;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@link ChannelEvent} which represents the notification of an exception
|
* A {@link ChannelEvent} which represents the notification of an exception
|
||||||
* raised by a {@link ChannelHandler} or an I/O thread. This event is allowed
|
* raised by a {@link ChannelHandler} or an I/O thread. This event is for
|
||||||
* to go upstream only.
|
* going upstream only. Please refer to the {@link ChannelEvent} documentation
|
||||||
|
* to find out what a upstream event and a downstream event are and what
|
||||||
|
* fundamental differences they have.
|
||||||
*
|
*
|
||||||
* @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)
|
||||||
|
@ -28,7 +28,9 @@ import java.net.SocketAddress;
|
|||||||
* A {@link ChannelEvent} which represents the transmission or reception of a
|
* A {@link ChannelEvent} which represents the transmission or reception of a
|
||||||
* message. It can mean the notification of a received message or the request
|
* message. It can mean the notification of a received message or the request
|
||||||
* for writing a message, depending on whether it is a upstream event or a
|
* for writing a message, depending on whether it is a upstream event or a
|
||||||
* downstream event respectively.
|
* downstream event respectively. Please refer to the {@link ChannelEvent}
|
||||||
|
* documentation to find out what a upstream event and a downstream event are
|
||||||
|
* and what fundamental differences they have.
|
||||||
*
|
*
|
||||||
* @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)
|
||||||
|
Loading…
Reference in New Issue
Block a user