Uses of Interface
org.jboss.netty.channel.ChildChannelStateEvent
-
Packages that use ChildChannelStateEvent Package Description org.jboss.netty.bootstrap IoC/DI friendly helper classes which enable an easy implementation of typical client side and server side channel initialization.org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel. -
-
Uses of ChildChannelStateEvent in org.jboss.netty.bootstrap
Methods in org.jboss.netty.bootstrap with parameters of type ChildChannelStateEvent Modifier and Type Method Description void
ServerBootstrap.Binder. childChannelOpen(ChannelHandlerContext ctx, ChildChannelStateEvent e)
-
Uses of ChildChannelStateEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChildChannelStateEvent Modifier and Type Class Description class
DefaultChildChannelStateEvent
The defaultChildChannelStateEvent
implementation.Methods in org.jboss.netty.channel with parameters of type ChildChannelStateEvent Modifier and Type Method Description void
SimpleChannelHandler. childChannelClosed(ChannelHandlerContext ctx, ChildChannelStateEvent e)
Invoked when a childChannel
was closed.void
SimpleChannelUpstreamHandler. childChannelClosed(ChannelHandlerContext ctx, ChildChannelStateEvent e)
Invoked when a childChannel
was closed.void
SimpleChannelHandler. childChannelOpen(ChannelHandlerContext ctx, ChildChannelStateEvent e)
Invoked when a childChannel
was open.void
SimpleChannelUpstreamHandler. childChannelOpen(ChannelHandlerContext ctx, ChildChannelStateEvent e)
Invoked when a childChannel
was open.
-