public class DefaultExceptionEvent extends Object implements ExceptionEvent
ExceptionEvent
implementation.Constructor and Description |
---|
DefaultExceptionEvent(Channel channel,
Throwable cause)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
Throwable |
getCause()
Returns the raised exception.
|
Channel |
getChannel()
Returns the
Channel which is associated with this event. |
ChannelFuture |
getFuture()
Returns the
ChannelFuture which is associated with this event. |
String |
toString() |
public Channel getChannel()
ChannelEvent
Channel
which is associated with this event.getChannel
in interface ChannelEvent
public ChannelFuture getFuture()
ChannelEvent
ChannelFuture
which is associated with this event.
If this event is an upstream event, this method will always return a
SucceededChannelFuture
because the event has occurred already.
If this event is a downstream event (i.e. I/O request), the returned
future will be notified when the I/O request succeeds or fails.getFuture
in interface ChannelEvent
public Throwable getCause()
ExceptionEvent
getCause
in interface ExceptionEvent
Copyright © 2008-2014 The Netty Project. All Rights Reserved.