Uses of Interface
org.jboss.netty.channel.ChannelStateEvent
Packages that use ChannelStateEvent
Package
Description
IoC/DI friendly helper classes which enable an easy implementation of
typical client side and server side channel initialization.
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
An HTTP-based client-side
SocketChannel
and its corresponding server-side Servlet implementation that make your
existing server application work in a firewalled network.This is an example web service client.
Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
Encoder, decoder and their related message types for HTTP.
Specialized variation of
FrameDecoder
which enables implementation of a non-blocking decoder in the blocking I/O
paradigm.Encoder, decoder, session handler and their related message types for the SPDY protocol.
The special-purpose handlers that store an event into an internal queue
instead of propagating the event immediately.
Adds support for read and write timeout and idle connection notification
using a
Timer.Implementation of a Traffic Shaping Handler and Dynamic Statistics.
-
Uses of ChannelStateEvent in org.jboss.netty.bootstrap
Methods in org.jboss.netty.bootstrap with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidServerBootstrap.Binder.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent evt) -
Uses of ChannelStateEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelStateEventModifier and TypeClassDescriptionclassThe default downstreamChannelStateEventimplementation.classThe default upstreamChannelStateEventimplementation.Methods in org.jboss.netty.channel with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidSimpleChannelDownstreamHandler.bindRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.bind(SocketAddress)was called.voidSimpleChannelHandler.bindRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.bind(SocketAddress)was called.voidSimpleChannelHandler.channelBound(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelis open and bound to a local address, but not connected.voidSimpleChannelUpstreamHandler.channelBound(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelis open and bound to a local address, but not connected.voidSimpleChannelHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelwas closed and all its related resources were released.voidSimpleChannelUpstreamHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelwas closed and all its related resources were released.voidSimpleChannelHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelis open, bound to a local address, and connected to a remote address.voidSimpleChannelUpstreamHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelis open, bound to a local address, and connected to a remote address.voidSimpleChannelHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelwas disconnected from its remote peer.voidSimpleChannelUpstreamHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelwas disconnected from its remote peer.voidSimpleChannelHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel'sinterestOpswas changed.voidSimpleChannelUpstreamHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel'sinterestOpswas changed.voidSimpleChannelHandler.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelis open, but not bound nor connected.voidSimpleChannelUpstreamHandler.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelis open, but not bound nor connected.voidSimpleChannelHandler.channelUnbound(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelwas unbound from the current local address.voidSimpleChannelUpstreamHandler.channelUnbound(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannelwas unbound from the current local address.voidSimpleChannelDownstreamHandler.closeRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.close()was called.voidSimpleChannelHandler.closeRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.close()was called.voidSimpleChannelDownstreamHandler.connectRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.connect(SocketAddress)was called.voidSimpleChannelHandler.connectRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.connect(SocketAddress)was called.voidSimpleChannelDownstreamHandler.disconnectRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.disconnect()was called.voidSimpleChannelHandler.disconnectRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.disconnect()was called.voidSimpleChannelDownstreamHandler.setInterestOpsRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.setInterestOps(int)was called.voidSimpleChannelHandler.setInterestOpsRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.setInterestOps(int)was called.voidSimpleChannelDownstreamHandler.unbindRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.unbind()was called.voidSimpleChannelHandler.unbindRequested(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.unbind()was called. -
Uses of ChannelStateEvent in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidHttpTunnelingClientSocketChannel.ServletChannelHandler.channelBound(ChannelHandlerContext ctx, ChannelStateEvent e) voidHttpTunnelingClientSocketChannel.ServletChannelHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidHttpTunnelingClientSocketChannel.ServletChannelHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidHttpTunnelingClientSocketChannel.ServletChannelHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) voidHttpTunnelingClientSocketChannel.ServletChannelHandler.channelUnbound(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.discard
Methods in org.jboss.netty.example.discard with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidDiscardClientHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidDiscardClientHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) private voidDiscardClientHandler.generateTraffic(ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.echo
Methods in org.jboss.netty.example.echo with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidEchoClientHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.factorial
Methods in org.jboss.netty.example.factorial with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidFactorialClientHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidFactorialServerHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidFactorialClientHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) private voidFactorialClientHandler.sendNumbers(ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.http.upload
Methods in org.jboss.netty.example.http.upload with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidHttpUploadServerHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.http.websocketx.client
Methods in org.jboss.netty.example.http.websocketx.client with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidWebSocketClientHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.localtime
Methods in org.jboss.netty.example.localtime with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidLocalTimeClientHandler.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.objectecho
Methods in org.jboss.netty.example.objectecho with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidObjectEchoClientHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.proxy
Methods in org.jboss.netty.example.proxy with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidHexDumpProxyInboundHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidHexDumpProxyInboundHandler.OutboundHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidHexDumpProxyInboundHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) voidHexDumpProxyInboundHandler.OutboundHandler.channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e) voidHexDumpProxyInboundHandler.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.securechat
Methods in org.jboss.netty.example.securechat with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidSecureChatServerHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidSecureChatServerHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.telnet
Methods in org.jboss.netty.example.telnet with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidTelnetServerHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.example.uptime
Methods in org.jboss.netty.example.uptime with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidUptimeClientHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidUptimeClientHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidUptimeClientHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.codec.frame
Methods in org.jboss.netty.handler.codec.frame with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidFrameDecoder.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidFrameDecoder.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) protected voidFrameDecoder.cleanup(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.codec.http
Methods in org.jboss.netty.handler.codec.http with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidHttpClientCodec.Decoder.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidHttpContentDecoder.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidHttpContentEncoder.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.codec.replay
Methods in org.jboss.netty.handler.codec.replay with parameters of type ChannelStateEventModifier and TypeMethodDescriptionprotected voidReplayingDecoder.cleanup(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.codec.spdy
Fields in org.jboss.netty.handler.codec.spdy declared as ChannelStateEventModifier and TypeFieldDescriptionprivate final ChannelStateEventSpdySessionHandler.ClosingChannelFutureListener.eMethods in org.jboss.netty.handler.codec.spdy with parameters of type ChannelStateEventModifier and TypeMethodDescriptionprotected voidSpdyFrameCodec.cleanup(ChannelHandlerContext ctx, ChannelStateEvent e) private voidSpdySessionHandler.sendGoAwayFrame(ChannelHandlerContext ctx, ChannelStateEvent e) Constructors in org.jboss.netty.handler.codec.spdy with parameters of type ChannelStateEventModifierConstructorDescription(package private) -
Uses of ChannelStateEvent in org.jboss.netty.handler.queue
Methods in org.jboss.netty.handler.queue with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidBlockingReadHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidBufferedWriteHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) Fail all buffered writes that are left.voidBufferedWriteHandler.closeRequested(ChannelHandlerContext ctx, ChannelStateEvent e) voidBufferedWriteHandler.disconnectRequested(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.ssl
Fields in org.jboss.netty.handler.ssl declared as ChannelStateEventModifier and TypeFieldDescriptionprivate final ChannelStateEventSslHandler.ClosingChannelFutureListener.eMethods in org.jboss.netty.handler.ssl with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidSslHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) Loop over all the pending writes and fail them.voidSslHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) CallsSslHandler.handshake()once theChannelis connectedvoidSslHandler.channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e) private voidSslHandler.closeOutboundAndChannel(ChannelHandlerContext context, ChannelStateEvent e) Constructors in org.jboss.netty.handler.ssl with parameters of type ChannelStateEventModifierConstructorDescription(package private) -
Uses of ChannelStateEvent in org.jboss.netty.handler.timeout
Methods in org.jboss.netty.handler.timeout with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidIdleStateHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidReadTimeoutHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidIdleStateHandler.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) voidReadTimeoutHandler.channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.traffic
Methods in org.jboss.netty.handler.traffic with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoidChannelTrafficShapingHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidGlobalChannelTrafficShapingHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidGlobalTrafficShapingHandler.channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) voidAbstractTrafficShapingHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidChannelTrafficShapingHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidGlobalChannelTrafficShapingHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) voidGlobalTrafficShapingHandler.channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)