Uses of Interface
org.jboss.netty.channel.ChannelHandlerContext
-
Packages that use ChannelHandlerContext Package Description 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.example.discard org.jboss.netty.example.echo org.jboss.netty.example.factorial org.jboss.netty.example.http.file org.jboss.netty.example.http.helloworld org.jboss.netty.example.http.snoop org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.example.http.websocketx.client This is an example web service client.org.jboss.netty.example.http.websocketx.server This package contains an example web socket web server.org.jboss.netty.example.localtime org.jboss.netty.example.objectecho org.jboss.netty.example.portunification org.jboss.netty.example.proxy org.jboss.netty.example.qotm org.jboss.netty.example.securechat org.jboss.netty.example.telnet org.jboss.netty.example.uptime org.jboss.netty.handler.codec.base64 Encoder and decoder which transform a Base64-encodedStringorChannelBufferinto a decodedChannelBufferand vice versa.org.jboss.netty.handler.codec.compression Encoder and decoder which compresses and decompressesChannelBuffers in a compression format such as zlib and gzip.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.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.org.jboss.netty.handler.codec.oneone Simplistic abstract classes which help implement encoder and decoder that transform an object into another object and vice versa.org.jboss.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessageinto aChannelBufferand vice versa.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.rtsp An RTSP extension based on the HTTP codec.org.jboss.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializableobject into a byte buffer and vice versa.org.jboss.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.codec.string Encoder and decoder which transform aStringinto aChannelBufferand vice versa.org.jboss.netty.handler.execution Executor-based implementation of various thread models that separate business logic from I/O threadsorg.jboss.netty.handler.ipfilter Implementation of a Ip based Filter handlers.
org.jboss.netty.handler.logging Logs aChannelEventfor debugging purpose using anInternalLogger.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 org.jboss.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError.org.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 ChannelHandlerContext in org.jboss.netty.channel
Methods in org.jboss.netty.channel that return ChannelHandlerContext Modifier and Type Method Description ChannelHandlerContextChannelPipeline. getContext(Class<? extends ChannelHandler> handlerType)Returns the context object of theChannelHandlerof the specified type in this pipeline.ChannelHandlerContextChannelPipeline. getContext(String name)Returns the context object of theChannelHandlerwith the specified name in this pipeline.ChannelHandlerContextChannelPipeline. getContext(ChannelHandler handler)Returns the context object of the specifiedChannelHandlerin this pipeline.ChannelHandlerContextDefaultChannelPipeline. getContext(Class<? extends ChannelHandler> handlerType)ChannelHandlerContextDefaultChannelPipeline. getContext(String name)ChannelHandlerContextDefaultChannelPipeline. getContext(ChannelHandler handler)Methods in org.jboss.netty.channel with parameters of type ChannelHandlerContext Modifier and Type Method Description voidLifeCycleAwareChannelHandler. afterAdd(ChannelHandlerContext ctx)voidLifeCycleAwareChannelHandler. afterRemove(ChannelHandlerContext ctx)voidLifeCycleAwareChannelHandler. beforeAdd(ChannelHandlerContext ctx)voidLifeCycleAwareChannelHandler. beforeRemove(ChannelHandlerContext ctx)static voidChannels. bind(ChannelHandlerContext ctx, ChannelFuture future, SocketAddress localAddress)Sends a"bind"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.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.voidSimpleChannelHandler. childChannelClosed(ChannelHandlerContext ctx, ChildChannelStateEvent e)Invoked when a childChannelwas closed.voidSimpleChannelUpstreamHandler. childChannelClosed(ChannelHandlerContext ctx, ChildChannelStateEvent e)Invoked when a childChannelwas closed.voidSimpleChannelHandler. childChannelOpen(ChannelHandlerContext ctx, ChildChannelStateEvent e)Invoked when a childChannelwas open.voidSimpleChannelUpstreamHandler. childChannelOpen(ChannelHandlerContext ctx, ChildChannelStateEvent e)Invoked when a childChannelwas open.static voidChannels. close(ChannelHandlerContext ctx, ChannelFuture future)Sends a"close"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.voidSimpleChannelDownstreamHandler. closeRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.close()was called.voidSimpleChannelHandler. closeRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.close()was called.static voidChannels. connect(ChannelHandlerContext ctx, ChannelFuture future, SocketAddress remoteAddress)Sends a"connect"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.voidSimpleChannelDownstreamHandler. connectRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.connect(SocketAddress)was called.voidSimpleChannelHandler. connectRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.connect(SocketAddress)was called.static voidChannels. disconnect(ChannelHandlerContext ctx, ChannelFuture future)Sends a"disconnect"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.voidSimpleChannelDownstreamHandler. disconnectRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.disconnect()was called.voidSimpleChannelHandler. disconnectRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.disconnect()was called.voidSimpleChannelHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)Invoked when an exception was raised by an I/O thread or aChannelHandler.voidSimpleChannelUpstreamHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)Invoked when an exception was raised by an I/O thread or aChannelHandler.static voidChannels. fireChannelBound(ChannelHandlerContext ctx, SocketAddress localAddress)Sends a"channelBound"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireChannelClosed(ChannelHandlerContext ctx)Sends a"channelClosed"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireChannelConnected(ChannelHandlerContext ctx, SocketAddress remoteAddress)Sends a"channelConnected"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireChannelDisconnected(ChannelHandlerContext ctx)Sends a"channelDisconnected"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireChannelInterestChanged(ChannelHandlerContext ctx)Sends a"channelInterestChanged"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireChannelOpen(ChannelHandlerContext ctx)Sends a"channelOpen"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireChannelUnbound(ChannelHandlerContext ctx)Sends a"channelUnbound"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireExceptionCaught(ChannelHandlerContext ctx, Throwable cause)Sends a"exceptionCaught"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static ChannelFutureChannels. fireExceptionCaughtLater(ChannelHandlerContext ctx, Throwable cause)Sends a"exceptionCaught"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContextonce the io-thread runs again.static voidChannels. fireMessageReceived(ChannelHandlerContext ctx, Object message)Sends a"messageReceived"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireMessageReceived(ChannelHandlerContext ctx, Object message, SocketAddress remoteAddress)Sends a"messageReceived"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. fireWriteComplete(ChannelHandlerContext ctx, long amount)Sends a"writeComplete"event to theChannelUpstreamHandlerwhich is placed in the closest upstream from the handler associated with the specifiedChannelHandlerContext.voidChannelDownstreamHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)Handles the specified downstream event.voidSimpleChannelDownstreamHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)Handles the specified downstream event.voidSimpleChannelHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)Handles the specified downstream event.voidChannelUpstreamHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)Handles the specified upstream event.voidSimpleChannelHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)Handles the specified upstream event.voidSimpleChannelUpstreamHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)Handles the specified upstream event.voidSimpleChannelHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)Invoked when a message object (e.g:ChannelBuffer) was received from a remote peer.voidSimpleChannelUpstreamHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)Invoked when a message object (e.g:ChannelBuffer) was received from a remote peer.static voidChannels. setInterestOps(ChannelHandlerContext ctx, ChannelFuture future, int interestOps)Sends a"setInterestOps"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.voidSimpleChannelDownstreamHandler. setInterestOpsRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.setInterestOps(int)was called.voidSimpleChannelHandler. setInterestOpsRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.setInterestOps(int)was called.static voidChannels. unbind(ChannelHandlerContext ctx, ChannelFuture future)Sends a"unbind"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.voidSimpleChannelDownstreamHandler. unbindRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.unbind()was called.voidSimpleChannelHandler. unbindRequested(ChannelHandlerContext ctx, ChannelStateEvent e)Invoked whenChannel.unbind()was called.static voidChannels. write(ChannelHandlerContext ctx, ChannelFuture future, Object message)Sends a"write"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.static voidChannels. write(ChannelHandlerContext ctx, ChannelFuture future, Object message, SocketAddress remoteAddress)Sends a"write"request to theChannelDownstreamHandlerwhich is placed in the closest downstream from the handler associated with the specifiedChannelHandlerContext.voidSimpleChannelHandler. writeComplete(ChannelHandlerContext ctx, WriteCompletionEvent e)Invoked when something was written into aChannel.voidSimpleChannelUpstreamHandler. writeComplete(ChannelHandlerContext ctx, WriteCompletionEvent e)Invoked when something was written into aChannel.voidSimpleChannelDownstreamHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e)Invoked whenChannel.write(Object)is called.voidSimpleChannelHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e)Invoked whenChannel.write(Object)is called. -
Uses of ChannelHandlerContext in org.jboss.netty.example.discard
Methods in org.jboss.netty.example.discard with parameters of type ChannelHandlerContext Modifier and Type Method Description voidDiscardClientHandler. channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidDiscardClientHandler. channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e)voidDiscardClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidDiscardServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidDiscardClientHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidDiscardServerHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidDiscardClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidDiscardServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidDiscardClientHandler. writeComplete(ChannelHandlerContext ctx, WriteCompletionEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.echo
Methods in org.jboss.netty.example.echo with parameters of type ChannelHandlerContext Modifier and Type Method Description voidEchoClientHandler. channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidEchoClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidEchoServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidEchoClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidEchoServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.factorial
-
Uses of ChannelHandlerContext in org.jboss.netty.example.http.file
Methods in org.jboss.netty.example.http.file with parameters of type ChannelHandlerContext Modifier and Type Method Description voidHttpStaticFileServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpStaticFileServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.http.helloworld
Methods in org.jboss.netty.example.http.helloworld with parameters of type ChannelHandlerContext Modifier and Type Method Description voidHttpHelloWorldServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpHelloWorldServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.http.snoop
Methods in org.jboss.netty.example.http.snoop with parameters of type ChannelHandlerContext Modifier and Type Method Description voidHttpSnoopServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpSnoopClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpSnoopServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.http.upload
Methods in org.jboss.netty.example.http.upload with parameters of type ChannelHandlerContext Modifier and Type Method Description voidHttpUploadServerHandler. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidHttpUploadClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpUploadServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpUploadClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpUploadServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.http.websocketx.autobahn
Methods in org.jboss.netty.example.http.websocketx.autobahn with parameters of type ChannelHandlerContext Modifier and Type Method Description voidAutobahnServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidAutobahnServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.http.websocketx.client
Methods in org.jboss.netty.example.http.websocketx.client with parameters of type ChannelHandlerContext Modifier and Type Method Description voidWebSocketClientHandler. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidWebSocketClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidWebSocketClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.http.websocketx.server
Methods in org.jboss.netty.example.http.websocketx.server with parameters of type ChannelHandlerContext Modifier and Type Method Description voidWebSocketServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidWebSocketServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.localtime
Methods in org.jboss.netty.example.localtime with parameters of type ChannelHandlerContext Modifier and Type Method Description voidLocalTimeClientHandler. channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e)voidLocalTimeClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidLocalTimeServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidLocalTimeClientHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidLocalTimeServerHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidLocalTimeClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidLocalTimeServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.objectecho
Methods in org.jboss.netty.example.objectecho with parameters of type ChannelHandlerContext Modifier and Type Method Description voidObjectEchoClientHandler. channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidObjectEchoClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidObjectEchoServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidObjectEchoClientHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidObjectEchoServerHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidObjectEchoClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidObjectEchoServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.portunification
Methods in org.jboss.netty.example.portunification with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectPortUnificationServerHandler. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer) -
Uses of ChannelHandlerContext in org.jboss.netty.example.proxy
Methods in org.jboss.netty.example.proxy with parameters of type ChannelHandlerContext Modifier and Type Method Description voidHexDumpProxyInboundHandler. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidHexDumpProxyInboundHandler. channelInterestChanged(ChannelHandlerContext ctx, ChannelStateEvent e)voidHexDumpProxyInboundHandler. channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e)voidHexDumpProxyInboundHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHexDumpProxyInboundHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.qotm
Methods in org.jboss.netty.example.qotm with parameters of type ChannelHandlerContext Modifier and Type Method Description voidQuoteOfTheMomentClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidQuoteOfTheMomentServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidQuoteOfTheMomentClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidQuoteOfTheMomentServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.securechat
Methods in org.jboss.netty.example.securechat with parameters of type ChannelHandlerContext Modifier and Type Method Description voidSecureChatServerHandler. channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidSecureChatServerHandler. channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidSecureChatClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidSecureChatServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidSecureChatClientHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidSecureChatServerHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidSecureChatClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidSecureChatServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.telnet
Methods in org.jboss.netty.example.telnet with parameters of type ChannelHandlerContext Modifier and Type Method Description voidTelnetServerHandler. channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidTelnetClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidTelnetServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidTelnetClientHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidTelnetServerHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidTelnetClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidTelnetServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.example.uptime
Methods in org.jboss.netty.example.uptime with parameters of type ChannelHandlerContext Modifier and Type Method Description voidUptimeClientHandler. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidUptimeClientHandler. channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidUptimeClientHandler. channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e)voidUptimeClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.base64
Methods in org.jboss.netty.handler.codec.base64 with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectBase64Decoder. decode(ChannelHandlerContext ctx, Channel channel, Object msg)protected ObjectBase64Encoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.compression
-
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.frame
Methods in org.jboss.netty.handler.codec.frame with parameters of type ChannelHandlerContext Modifier and Type Method Description voidFrameDecoder. afterAdd(ChannelHandlerContext ctx)voidFrameDecoder. afterRemove(ChannelHandlerContext ctx)voidFrameDecoder. beforeAdd(ChannelHandlerContext ctx)voidFrameDecoder. beforeRemove(ChannelHandlerContext ctx)voidFrameDecoder. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidFrameDecoder. channelDisconnected(ChannelHandlerContext ctx, ChannelStateEvent e)protected voidFrameDecoder. cleanup(ChannelHandlerContext ctx, ChannelStateEvent e)protected ObjectDelimiterBasedFrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectFixedLengthFrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected abstract ObjectFrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)Decodes the received packets so far into a frame.protected ObjectLengthFieldBasedFrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectLineBasedFrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectFrameDecoder. decodeLast(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)Decodes the received data so far into a frame when the channel is disconnected.protected ObjectLengthFieldPrepender. encode(ChannelHandlerContext ctx, Channel channel, Object msg)voidFrameDecoder. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidFrameDecoder. messageReceived(ChannelHandlerContext ctx, MessageEvent e)protected ChannelBufferFixedLengthFrameDecoder. newCumulationBuffer(ChannelHandlerContext ctx, int minimumCapacity)protected ChannelBufferFrameDecoder. newCumulationBuffer(ChannelHandlerContext ctx, int minimumCapacity)Create a newChannelBufferwhich is used for the cumulation.protected voidFrameDecoder. unfoldAndFireMessageReceived(ChannelHandlerContext context, SocketAddress remoteAddress, Object result)protected ChannelBufferFrameDecoder. updateCumulation(ChannelHandlerContext ctx, ChannelBuffer input) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.http
-
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.http.websocketx
Methods in org.jboss.netty.handler.codec.http.websocketx with parameters of type ChannelHandlerContext Modifier and Type Method Description voidWebSocketServerProtocolHandler. afterAdd(ChannelHandlerContext ctx)voidWebSocketServerProtocolHandler. afterRemove(ChannelHandlerContext ctx)voidWebSocketServerProtocolHandler. beforeAdd(ChannelHandlerContext ctx)voidWebSocketServerProtocolHandler. beforeRemove(ChannelHandlerContext ctx)protected ObjectWebSocket00FrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, VoidEnum state)protected ObjectWebSocket08FrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, WebSocket08FrameDecoder.State state)protected ObjectWebSocketFrameAggregator. decode(ChannelHandlerContext ctx, Channel channel, Object message)protected ObjectWebSocket00FrameEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg)protected ObjectWebSocket08FrameEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg)voidWebSocketServerProtocolHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidWebSocketServerProtocolHandshakeHandler. exceptionCaught(ChannelHandlerContext ctx, Throwable cause)voidWebSocketServerProtocolHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidWebSocketServerProtocolHandshakeHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.marshalling
Methods in org.jboss.netty.handler.codec.marshalling with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectCompatibleMarshallingDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, VoidEnum state)protected ObjectMarshallingDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectCompatibleMarshallingDecoder. decodeLast(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, VoidEnum state)protected ObjectCompatibleMarshallingEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg)protected ObjectMarshallingEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg)voidCompatibleMarshallingDecoder. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)CallsChannel.close()if a TooLongFrameException was thrownorg.jboss.marshalling.MarshallerDefaultMarshallerProvider. getMarshaller(ChannelHandlerContext ctx)org.jboss.marshalling.MarshallerMarshallerProvider. getMarshaller(ChannelHandlerContext ctx)Get aMarshallerfor the givenChannelHandlerContextorg.jboss.marshalling.MarshallerThreadLocalMarshallerProvider. getMarshaller(ChannelHandlerContext ctx)org.jboss.marshalling.UnmarshallerContextBoundUnmarshallerProvider. getUnmarshaller(ChannelHandlerContext ctx)org.jboss.marshalling.UnmarshallerDefaultUnmarshallerProvider. getUnmarshaller(ChannelHandlerContext ctx)org.jboss.marshalling.UnmarshallerThreadLocalUnmarshallerProvider. getUnmarshaller(ChannelHandlerContext ctx)org.jboss.marshalling.UnmarshallerUnmarshallerProvider. getUnmarshaller(ChannelHandlerContext ctx)Get theUnmarshallerfor the givenChannelHandlerContext -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.oneone
Methods in org.jboss.netty.handler.codec.oneone with parameters of type ChannelHandlerContext Modifier and Type Method Description protected abstract ObjectOneToOneDecoder. decode(ChannelHandlerContext ctx, Channel channel, Object msg)Transforms the specified received message into another message and return the transformed message.protected booleanOneToOneEncoder. doEncode(ChannelHandlerContext ctx, MessageEvent e)protected booleanOneToOneStrictEncoder. doEncode(ChannelHandlerContext ctx, MessageEvent e)protected abstract ObjectOneToOneEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg)Transforms the specified message into another message and return the transformed message.voidOneToOneEncoder. handleDownstream(ChannelHandlerContext ctx, ChannelEvent evt)voidOneToOneDecoder. handleUpstream(ChannelHandlerContext ctx, ChannelEvent evt) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.protobuf
Methods in org.jboss.netty.handler.codec.protobuf with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectProtobufDecoder. decode(ChannelHandlerContext ctx, Channel channel, Object msg)protected ObjectProtobufVarint32FrameDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectProtobufEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg)protected ObjectProtobufVarint32LengthFieldPrepender. encode(ChannelHandlerContext ctx, Channel channel, Object msg) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.replay
Methods in org.jboss.netty.handler.codec.replay with parameters of type ChannelHandlerContext Modifier and Type Method Description protected voidReplayingDecoder. cleanup(ChannelHandlerContext ctx, ChannelStateEvent e)protected ObjectReplayingDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected abstract ObjectReplayingDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, T state)Decodes the received packets so far into a frame.protected ObjectReplayingDecoder. decodeLast(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectReplayingDecoder. decodeLast(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, T state)Decodes the received data so far into a frame when the channel is disconnected.voidReplayingDecoder. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.rtsp
Methods in org.jboss.netty.handler.codec.rtsp with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectRtspMessageDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, HttpMessageDecoder.State state)protected ObjectRtspMessageEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.serialization
Methods in org.jboss.netty.handler.codec.serialization with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectObjectDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectCompatibleObjectEncoder. encode(ChannelHandlerContext context, Channel channel, Object msg)protected ObjectObjectEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.socks
Methods in org.jboss.netty.handler.codec.socks with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectSocksAuthRequestDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, org.jboss.netty.handler.codec.socks.SocksAuthRequestDecoder.State state)protected ObjectSocksAuthResponseDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, SocksAuthResponseDecoder.State state)protected ObjectSocksCmdRequestDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, org.jboss.netty.handler.codec.socks.SocksCmdRequestDecoder.State state)protected ObjectSocksCmdResponseDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, SocksCmdResponseDecoder.State state)protected ObjectSocksInitRequestDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, org.jboss.netty.handler.codec.socks.SocksInitRequestDecoder.State state)protected ObjectSocksInitResponseDecoder. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, SocksInitResponseDecoder.State state)protected ObjectSocksMessageEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy with parameters of type ChannelHandlerContext Modifier and Type Method Description protected voidSpdyOrHttpChooser. addHttpHandlers(ChannelHandlerContext ctx)Add allChannelHandler's that are needed for HTTP.protected voidSpdyOrHttpChooser. addSpdyHandlers(ChannelHandlerContext ctx, SpdyVersion version)Add allChannelHandler's that are needed for SPDY with the given version.voidSpdyFrameCodec. beforeAdd(ChannelHandlerContext ctx)protected voidSpdyFrameCodec. cleanup(ChannelHandlerContext ctx, ChannelStateEvent e)protected ObjectSpdyFrameCodec. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)protected ObjectSpdyHttpDecoder. decode(ChannelHandlerContext ctx, Channel channel, Object msg)voidSpdySessionHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidSpdyFrameCodec. handleDownstream(ChannelHandlerContext ctx, ChannelEvent evt)voidSpdyHttpCodec. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)voidSpdyHttpEncoder. handleDownstream(ChannelHandlerContext ctx, ChannelEvent evt)voidSpdySessionHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent evt)voidSpdyHttpCodec. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidSpdyOrHttpChooser. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidSpdyHttpResponseStreamIdHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidSpdySessionHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)protected voidSpdyHttpEncoder. writeChunk(ChannelHandlerContext ctx, ChannelFuture future, int streamId, HttpChunk chunk, SocketAddress remoteAddress)Writes an HTTP chunk downstream as one or more SPDY frames.voidSpdyHttpResponseStreamIdHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.codec.string
Methods in org.jboss.netty.handler.codec.string with parameters of type ChannelHandlerContext Modifier and Type Method Description protected ObjectStringDecoder. decode(ChannelHandlerContext ctx, Channel channel, Object msg)protected ObjectStringEncoder. encode(ChannelHandlerContext ctx, Channel channel, Object msg) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.execution
Fields in org.jboss.netty.handler.execution declared as ChannelHandlerContext Modifier and Type Field Description protected ChannelHandlerContextChannelEventRunnable. ctxMethods in org.jboss.netty.handler.execution that return ChannelHandlerContext Modifier and Type Method Description ChannelHandlerContextChannelEventRunnable. getContext()Returns theChannelHandlerContextwhich will be used to send theChannelEventupstream.Methods in org.jboss.netty.handler.execution with parameters of type ChannelHandlerContext Modifier and Type Method Description voidExecutionHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)protected booleanExecutionHandler. handleReadSuspend(ChannelHandlerContext ctx, ChannelEvent e)Handle suspended readsvoidExecutionHandler. handleUpstream(ChannelHandlerContext context, ChannelEvent e)Constructors in org.jboss.netty.handler.execution with parameters of type ChannelHandlerContext Constructor Description ChannelDownstreamEventRunnable(ChannelHandlerContext ctx, ChannelEvent e, Executor executor)ChannelEventRunnable(ChannelHandlerContext ctx, ChannelEvent e, Executor executor)Creates aRunnablewhich sends the specifiedChannelEventupstream via the specifiedChannelHandlerContext.ChannelUpstreamEventRunnable(ChannelHandlerContext ctx, ChannelEvent e, Executor executor)Creates aRunnablewhich sends the specifiedChannelEventupstream via the specifiedChannelHandlerContext. -
Uses of ChannelHandlerContext in org.jboss.netty.handler.ipfilter
Methods in org.jboss.netty.handler.ipfilter with parameters of type ChannelHandlerContext Modifier and Type Method Description protected abstract booleanIpFilteringHandlerImpl. accept(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)Called when the channel is connected.protected booleanIpFilterRuleHandler. accept(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)protected booleanOneIpFilterHandler. accept(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)ChannelFutureIpFilterListener. allowed(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)Called when the channel has the CONNECTED status and the channel was allowed by a previous call to accept().protected booleanIpFilteringHandlerImpl. continues(ChannelHandlerContext ctx, ChannelEvent e)Called in handleUpstream, if this channel was previously blocked, to check if whatever the event, it should be passed to the next entry in the pipeline.
If one wants to not block events, just overridden this method by returning always true.
Note that OPENED and BOUND events are still passed to the next entry in the pipeline since those events come out before the CONNECTED event and so the possibility to filter the connection.booleanIpFilterListener. continues(ChannelHandlerContext ctx, ChannelEvent e)Called in handleUpstream, if this channel was previously blocked, to check if whatever the event, it should be passed to the next entry in the pipeline.
If one wants to not block events, just overridden this method by returning always true.
Note that OPENED and BOUND events are still passed to the next entry in the pipeline since those events come out before the CONNECTED event and so the possibility to filter the connection.protected ChannelFutureIpFilteringHandlerImpl. handleAllowedChannel(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)protected ChannelFutureIpFilteringHandlerImpl. handleRefusedChannel(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)Called when the channel has the CONNECTED status and the channel was refused by a previous call to accept().voidIpFilteringHandlerImpl. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidOneIpFilterHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)protected booleanIpFilteringHandlerImpl. isBlocked(ChannelHandlerContext ctx)Internal method to test if the current channel is blocked.ChannelFutureIpFilterListener. refused(ChannelHandlerContext ctx, ChannelEvent e, InetSocketAddress inetSocketAddress)Called when the channel has the CONNECTED status and the channel was refused by a previous call to accept(). -
Uses of ChannelHandlerContext in org.jboss.netty.handler.logging
Methods in org.jboss.netty.handler.logging with parameters of type ChannelHandlerContext Modifier and Type Method Description voidLoggingHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)voidLoggingHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.queue
Methods in org.jboss.netty.handler.queue with parameters of type ChannelHandlerContext Modifier and Type Method Description voidBufferedWriteHandler. afterAdd(ChannelHandlerContext ctx)voidBufferedWriteHandler. afterRemove(ChannelHandlerContext ctx)Fail all buffered writes that are left.voidBufferedWriteHandler. beforeAdd(ChannelHandlerContext ctx)voidBufferedWriteHandler. beforeRemove(ChannelHandlerContext ctx)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)voidBlockingReadHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidBlockingReadHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidBufferedWriteHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e)Stores all write requests to the queue so that they are actually written onBufferedWriteHandler.flush(). -
Uses of ChannelHandlerContext in org.jboss.netty.handler.ssl
Methods in org.jboss.netty.handler.ssl with parameters of type ChannelHandlerContext Modifier and Type Method Description voidSslHandler. afterRemove(ChannelHandlerContext ctx)Fail all pending writes which we were not able to flush outvoidSslHandler. beforeAdd(ChannelHandlerContext ctx)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)protected ObjectSslHandler. decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer in)voidSslHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidSslHandler. handleDownstream(ChannelHandlerContext context, ChannelEvent evt) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.stream
Methods in org.jboss.netty.handler.stream with parameters of type ChannelHandlerContext Modifier and Type Method Description voidChunkedWriteHandler. afterAdd(ChannelHandlerContext ctx)voidChunkedWriteHandler. afterRemove(ChannelHandlerContext ctx)voidChunkedWriteHandler. beforeAdd(ChannelHandlerContext ctx)voidChunkedWriteHandler. beforeRemove(ChannelHandlerContext ctx)voidChunkedWriteHandler. handleDownstream(ChannelHandlerContext ctx, ChannelEvent e)voidChunkedWriteHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.timeout
Methods in org.jboss.netty.handler.timeout with parameters of type ChannelHandlerContext Modifier and Type Method Description voidIdleStateHandler. afterAdd(ChannelHandlerContext ctx)voidReadTimeoutHandler. afterAdd(ChannelHandlerContext ctx)voidIdleStateHandler. afterRemove(ChannelHandlerContext ctx)voidReadTimeoutHandler. afterRemove(ChannelHandlerContext ctx)voidIdleStateHandler. beforeAdd(ChannelHandlerContext ctx)voidReadTimeoutHandler. beforeAdd(ChannelHandlerContext ctx)voidIdleStateHandler. beforeRemove(ChannelHandlerContext ctx)voidReadTimeoutHandler. beforeRemove(ChannelHandlerContext ctx)voidIdleStateHandler. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidReadTimeoutHandler. channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)voidIdleStateAwareChannelHandler. channelIdle(ChannelHandlerContext ctx, IdleStateEvent e)Invoked when aChannelhas been idle for a while.voidIdleStateAwareChannelUpstreamHandler. channelIdle(ChannelHandlerContext ctx, IdleStateEvent e)Invoked when aChannelhas been idle for a while.protected voidIdleStateHandler. channelIdle(ChannelHandlerContext ctx, IdleState state, long lastActivityTimeMillis)voidIdleStateHandler. channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e)voidReadTimeoutHandler. channelOpen(ChannelHandlerContext ctx, ChannelStateEvent e)voidIdleStateAwareChannelHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidIdleStateAwareChannelUpstreamHandler. handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)voidIdleStateHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidReadTimeoutHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)protected voidReadTimeoutHandler. readTimedOut(ChannelHandlerContext ctx)voidIdleStateHandler. writeComplete(ChannelHandlerContext ctx, WriteCompletionEvent e)voidWriteTimeoutHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e)protected voidWriteTimeoutHandler. writeTimedOut(ChannelHandlerContext ctx) -
Uses of ChannelHandlerContext in org.jboss.netty.handler.traffic
Methods in org.jboss.netty.handler.traffic with parameters of type ChannelHandlerContext 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)protected longGlobalChannelTrafficShapingHandler. checkWaitReadTime(ChannelHandlerContext ctx, long wait, long now)protected voidGlobalChannelTrafficShapingHandler. informReadOperation(ChannelHandlerContext ctx, long now)protected voidAbstractTrafficShapingHandler. internalSubmitWrite(ChannelHandlerContext ctx, MessageEvent evt)Deprecated.voidAbstractTrafficShapingHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent evt)voidGlobalChannelTrafficShapingHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent evt)protected voidAbstractTrafficShapingHandler. submitWrite(ChannelHandlerContext ctx, MessageEvent evt, long delay)Deprecated.protected voidGlobalChannelTrafficShapingHandler. submitWrite(ChannelHandlerContext ctx, MessageEvent evt, long size, long writedelay, long now)voidAbstractTrafficShapingHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent evt)voidGlobalChannelTrafficShapingHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent evt)
-