Package org.jboss.netty.channel
Interface ChildChannelStateEvent
-
- All Superinterfaces:
ChannelEvent
- All Known Implementing Classes:
DefaultChildChannelStateEvent
public interface ChildChannelStateEvent extends ChannelEvent
AChannelEvent
which represents the notification of the state of a childChannel
. This event is for going upstream only. Please refer to theChannelEvent
documentation to find out what an upstream event and a downstream event are and what fundamental differences they have.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Channel
getChannel()
Returns the parentChannel
which is associated with this event.Channel
getChildChannel()
Returns the childChannel
whose state has been changed.-
Methods inherited from interface org.jboss.netty.channel.ChannelEvent
getFuture
-
-
-
-
Method Detail
-
getChannel
Channel getChannel()
Returns the parentChannel
which is associated with this event. Please note that you should usegetChildChannel()
to get theChannel
created or accepted by the parentChannel
.- Specified by:
getChannel
in interfaceChannelEvent
-
-