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 parentChannelwhich is associated with this event. Please note that you should usegetChildChannel()to get theChannelcreated or accepted by the parentChannel.- Specified by:
getChannelin interfaceChannelEvent
-
getChildChannel
Channel getChildChannel()Returns the childChannelwhose state has been changed.
-