Uses of Interface
org.jboss.netty.channel.ChannelStateEvent
-
Packages that use ChannelStateEvent 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.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChanneland its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.example.discard org.jboss.netty.example.echo org.jboss.netty.example.factorial org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.client This is an example web service client.org.jboss.netty.example.localtime org.jboss.netty.example.objectecho org.jboss.netty.example.proxy org.jboss.netty.example.securechat org.jboss.netty.example.telnet org.jboss.netty.example.uptime org.jboss.netty.handler.codec.frame 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.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoderwhich enables implementation of a non-blocking decoder in the blocking I/O paradigm.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.queue The special-purpose handlers that store an event into an internal queue instead of propagating the event immediately.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngineorg.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer.org.jboss.netty.handler.traffic 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 ChannelStateEvent Modifier and Type Method Description voidServerBootstrap.Binder. channelOpen(ChannelHandlerContext ctx, ChannelStateEvent evt) -
Uses of ChannelStateEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelStateEvent Modifier and Type Class Description classDownstreamChannelStateEventThe default downstreamChannelStateEventimplementation.classUpstreamChannelStateEventThe default upstreamChannelStateEventimplementation.Methods in org.jboss.netty.channel with parameters of type ChannelStateEvent Modifier and Type Method Description voidSimpleChannelDownstreamHandler. 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 ChannelStateEvent Modifier and Type Method Description voidHttpTunnelingClientSocketChannel.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 ChannelStateEvent Modifier and Type Method Description voidDiscardClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidEchoClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidFactorialClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidHttpUploadServerHandler. 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 ChannelStateEvent Modifier and Type Method Description voidWebSocketClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidLocalTimeClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidObjectEchoClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidHexDumpProxyInboundHandler. 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 ChannelStateEvent Modifier and Type Method Description voidSecureChatServerHandler. 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 ChannelStateEvent Modifier and Type Method Description voidTelnetServerHandler. 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 ChannelStateEvent Modifier and Type Method Description voidUptimeClientHandler. 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 ChannelStateEvent Modifier and Type Method Description voidFrameDecoder. 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 ChannelStateEvent Modifier and Type Method Description voidHttpClientCodec.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 ChannelStateEvent Modifier and Type Method Description protected 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 ChannelStateEvent Modifier and Type Field Description private ChannelStateEventSpdySessionHandler.ClosingChannelFutureListener. eMethods in org.jboss.netty.handler.codec.spdy with parameters of type ChannelStateEvent Modifier and Type Method Description protected 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 ChannelStateEvent Constructor Description ClosingChannelFutureListener(ChannelHandlerContext ctx, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.queue
Methods in org.jboss.netty.handler.queue with parameters of type ChannelStateEvent Modifier and Type Method Description voidBlockingReadHandler. 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 ChannelStateEvent Modifier and Type Field Description private ChannelStateEventSslHandler.ClosingChannelFutureListener. eMethods in org.jboss.netty.handler.ssl with parameters of type ChannelStateEvent Modifier and Type Method Description voidSslHandler. 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 ChannelStateEvent Constructor Description ClosingChannelFutureListener(ChannelHandlerContext context, ChannelStateEvent e) -
Uses of ChannelStateEvent in org.jboss.netty.handler.timeout
Methods in org.jboss.netty.handler.timeout with parameters of type ChannelStateEvent Modifier and Type Method Description voidIdleStateHandler. 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 ChannelStateEvent Modifier and Type Method Description voidChannelTrafficShapingHandler. 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)
-