org.jboss.netty.channel
类 DefaultExceptionEvent

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

public class DefaultExceptionEvent
extends java.lang.Object
implements ExceptionEvent

ExceptionEvent的默认实现.


构造方法摘要
DefaultExceptionEvent(Channel channel, java.lang.Throwable cause)
          创建一个实例.
 
方法摘要
 java.lang.Throwable getCause()
          返回抛出的异常.
 Channel getChannel()
          返回关联到该事件的Channel.
 ChannelFuture getFuture()
          返回关联到该事件的ChannelFuture.
 java.lang.String toString()
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

DefaultExceptionEvent

public DefaultExceptionEvent(Channel channel,
                             java.lang.Throwable cause)
创建一个实例.

方法详细信息

getChannel

public Channel getChannel()
从接口 ChannelEvent 复制的描述
返回关联到该事件的Channel.

指定者:
接口 ChannelEvent 中的 getChannel

getFuture

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

指定者:
接口 ChannelEvent 中的 getFuture

getCause

public java.lang.Throwable getCause()
从接口 ExceptionEvent 复制的描述
返回抛出的异常.

指定者:
接口 ExceptionEvent 中的 getCause

toString

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