Package org.jboss.netty.channel
Interface ChildChannelStateEvent
- All Superinterfaces:
ChannelEvent
- All Known Implementing Classes:
DefaultChildChannelStateEvent
A
ChannelEvent
which represents the notification of the state of
a child Channel
. This event is for going upstream only. Please
refer to the ChannelEvent
documentation to find out what an upstream
event and a downstream event are and what fundamental differences they have.-
Method Summary
Methods inherited from interface org.jboss.netty.channel.ChannelEvent
getFuture
-
Method Details
-
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
-
getChildChannel
Channel getChildChannel()Returns the childChannel
whose state has been changed.
-