More clarification on ChannelHandlerContext
This commit is contained in:
parent
92be78df49
commit
320b7133a2
@ -25,6 +25,15 @@ package org.jboss.netty.channel;
|
|||||||
/**
|
/**
|
||||||
* Provides the properties and operations which are specific to the
|
* Provides the properties and operations which are specific to the
|
||||||
* {@link ChannelHandler} and the {@link ChannelPipeline} it belongs to.
|
* {@link ChannelHandler} and the {@link ChannelPipeline} it belongs to.
|
||||||
|
* Via a {@link ChannelHandlerContext}, a {@link ChannelHandler} can send
|
||||||
|
* a upstream or downstream {@link ChannelEvent} to the next or previous
|
||||||
|
* {@link ChannelHandler} in the {@link ChannelPipeline}.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* +---------+ 1 .. 1 +----------------+ 1 .. n +----------+
|
||||||
|
* | Handler |------->| HandlerContext |------->| Pipeline |
|
||||||
|
* +---------+ +----------------+ +----------+
|
||||||
|
* </pre>
|
||||||
*
|
*
|
||||||
* @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