org.jboss.netty.channel
类 DefaultChildChannelStateEvent

java.lang.Object
  继承者 org.jboss.netty.channel.DefaultChildChannelStateEvent
所有已实现的接口:
ChannelEvent, ChildChannelStateEvent

public class DefaultChildChannelStateEvent
extends java.lang.Object
implements ChildChannelStateEvent

ChildChannelStateEvent的默认实现.


构造方法摘要
DefaultChildChannelStateEvent(Channel parentChannel, Channel childChannel)
          创建一个实例.
 
方法摘要
 Channel getChannel()
          返回关联该事件的Channel.请注意你必须使用ChildChannelStateEvent.getChildChannel()去获得由父Channel创建或接收的Channel.
 Channel getChildChannel()
          返回状态已经改变的子Channel.
 ChannelFuture getFuture()
          返回关联到该事件的ChannelFuture.
 java.lang.String toString()
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

DefaultChildChannelStateEvent

public DefaultChildChannelStateEvent(Channel parentChannel,
                                     Channel childChannel)
创建一个实例.

方法详细信息

getChannel

public Channel getChannel()
从接口 ChildChannelStateEvent 复制的描述
返回关联该事件的Channel.请注意你必须使用ChildChannelStateEvent.getChildChannel()去获得由父Channel创建或接收的Channel.

指定者:
接口 ChannelEvent 中的 getChannel
指定者:
接口 ChildChannelStateEvent 中的 getChannel

getFuture

public ChannelFuture getFuture()
从接口 ChannelEvent 复制的描述
返回关联到该事件的ChannelFuture. 如果事件是一个上游事件,则该方法会总是返回一个 SucceededChannelFuture ,因为事件已经发生.如果事件是一个下游事件(如.I/O请求),返回的future会在I/O请求成功或失败时收到通知.

指定者:
接口 ChannelEvent 中的 getFuture

getChildChannel

public Channel getChildChannel()
从接口 ChildChannelStateEvent 复制的描述
返回状态已经改变的子Channel.

指定者:
接口 ChildChannelStateEvent 中的 getChildChannel

toString

public java.lang.String toString()
覆盖:
java.lang.Object 中的 toString