Package org.jboss.netty.channel
Interface ChildChannelStateEvent
-
- All Superinterfaces:
ChannelEvent
- All Known Implementing Classes:
DefaultChildChannelStateEvent
public interface ChildChannelStateEvent extends ChannelEvent
AChannelEventwhich represents the notification of the state of a childChannel. This event is for going upstream only. Please refer to theChannelEventdocumentation 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 ChannelgetChannel()Returns the parentChannelwhich is associated with this event.ChannelgetChildChannel()Returns the childChannelwhose state has been changed.-
Methods inherited from interface org.jboss.netty.channel.ChannelEvent
getFuture
-
-
-
-
Method Detail
-
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
-
-