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 TypeMethodDescriptionvoid
ServerBootstrap.Binder.channelOpen
(ChannelHandlerContext ctx, ChannelStateEvent evt) -
Uses of ChannelStateEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelStateEventModifier and TypeClassDescriptionclass
The default downstreamChannelStateEvent
implementation.class
The default upstreamChannelStateEvent
implementation.Methods in org.jboss.netty.channel with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoid
SimpleChannelDownstreamHandler.bindRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.bind(SocketAddress)
was called.void
SimpleChannelHandler.bindRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.bind(SocketAddress)
was called.void
SimpleChannelHandler.channelBound
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
is open and bound to a local address, but not connected.void
SimpleChannelUpstreamHandler.channelBound
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
is open and bound to a local address, but not connected.void
SimpleChannelHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
was closed and all its related resources were released.void
SimpleChannelUpstreamHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
was closed and all its related resources were released.void
SimpleChannelHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
is open, bound to a local address, and connected to a remote address.void
SimpleChannelUpstreamHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
is open, bound to a local address, and connected to a remote address.void
SimpleChannelHandler.channelDisconnected
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
was disconnected from its remote peer.void
SimpleChannelUpstreamHandler.channelDisconnected
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
was disconnected from its remote peer.void
SimpleChannelHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
'sinterestOps
was changed.void
SimpleChannelUpstreamHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
'sinterestOps
was changed.void
SimpleChannelHandler.channelOpen
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
is open, but not bound nor connected.void
SimpleChannelUpstreamHandler.channelOpen
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
is open, but not bound nor connected.void
SimpleChannelHandler.channelUnbound
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
was unbound from the current local address.void
SimpleChannelUpstreamHandler.channelUnbound
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked when aChannel
was unbound from the current local address.void
SimpleChannelDownstreamHandler.closeRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.close()
was called.void
SimpleChannelHandler.closeRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.close()
was called.void
SimpleChannelDownstreamHandler.connectRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.connect(SocketAddress)
was called.void
SimpleChannelHandler.connectRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.connect(SocketAddress)
was called.void
SimpleChannelDownstreamHandler.disconnectRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.disconnect()
was called.void
SimpleChannelHandler.disconnectRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.disconnect()
was called.void
SimpleChannelDownstreamHandler.setInterestOpsRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.setInterestOps(int)
was called.void
SimpleChannelHandler.setInterestOpsRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.setInterestOps(int)
was called.void
SimpleChannelDownstreamHandler.unbindRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) Invoked whenChannel.unbind()
was called.void
SimpleChannelHandler.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 TypeMethodDescriptionvoid
HttpTunnelingClientSocketChannel.ServletChannelHandler.channelBound
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HttpTunnelingClientSocketChannel.ServletChannelHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HttpTunnelingClientSocketChannel.ServletChannelHandler.channelDisconnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HttpTunnelingClientSocketChannel.ServletChannelHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HttpTunnelingClientSocketChannel.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 TypeMethodDescriptionvoid
DiscardClientHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
DiscardClientHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) private void
DiscardClientHandler.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 TypeMethodDescriptionvoid
EchoClientHandler.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 TypeMethodDescriptionvoid
FactorialClientHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
FactorialServerHandler.channelDisconnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
FactorialClientHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) private void
FactorialClientHandler.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 TypeMethodDescriptionvoid
HttpUploadServerHandler.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 TypeMethodDescriptionvoid
WebSocketClientHandler.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 TypeMethodDescriptionvoid
LocalTimeClientHandler.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 TypeMethodDescriptionvoid
ObjectEchoClientHandler.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 TypeMethodDescriptionvoid
HexDumpProxyInboundHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HexDumpProxyInboundHandler.OutboundHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HexDumpProxyInboundHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HexDumpProxyInboundHandler.OutboundHandler.channelInterestChanged
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HexDumpProxyInboundHandler.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 TypeMethodDescriptionvoid
SecureChatServerHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
SecureChatServerHandler.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 TypeMethodDescriptionvoid
TelnetServerHandler.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 TypeMethodDescriptionvoid
UptimeClientHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
UptimeClientHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
UptimeClientHandler.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 TypeMethodDescriptionvoid
FrameDecoder.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
FrameDecoder.channelDisconnected
(ChannelHandlerContext ctx, ChannelStateEvent e) protected void
FrameDecoder.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 TypeMethodDescriptionvoid
HttpClientCodec.Decoder.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HttpContentDecoder.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
HttpContentEncoder.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 void
ReplayingDecoder.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 ChannelStateEvent
SpdySessionHandler.ClosingChannelFutureListener.e
Methods in org.jboss.netty.handler.codec.spdy with parameters of type ChannelStateEventModifier and TypeMethodDescriptionprotected void
SpdyFrameCodec.cleanup
(ChannelHandlerContext ctx, ChannelStateEvent e) private void
SpdySessionHandler.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 TypeMethodDescriptionvoid
BlockingReadHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
BufferedWriteHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) Fail all buffered writes that are left.void
BufferedWriteHandler.closeRequested
(ChannelHandlerContext ctx, ChannelStateEvent e) void
BufferedWriteHandler.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 ChannelStateEvent
SslHandler.ClosingChannelFutureListener.e
Methods in org.jboss.netty.handler.ssl with parameters of type ChannelStateEventModifier and TypeMethodDescriptionvoid
SslHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) Loop over all the pending writes and fail them.void
SslHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) CallsSslHandler.handshake()
once theChannel
is connectedvoid
SslHandler.channelDisconnected
(ChannelHandlerContext ctx, ChannelStateEvent e) private void
SslHandler.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 TypeMethodDescriptionvoid
IdleStateHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
ReadTimeoutHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
IdleStateHandler.channelOpen
(ChannelHandlerContext ctx, ChannelStateEvent e) void
ReadTimeoutHandler.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 TypeMethodDescriptionvoid
ChannelTrafficShapingHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
GlobalChannelTrafficShapingHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
GlobalTrafficShapingHandler.channelClosed
(ChannelHandlerContext ctx, ChannelStateEvent e) void
AbstractTrafficShapingHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
ChannelTrafficShapingHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
GlobalChannelTrafficShapingHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e) void
GlobalTrafficShapingHandler.channelConnected
(ChannelHandlerContext ctx, ChannelStateEvent e)