Uses of Interface
org.jboss.netty.channel.MessageEvent
-
Packages that use MessageEvent 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.proxy org.jboss.netty.example.qotm org.jboss.netty.example.securechat org.jboss.netty.example.telnet 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.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.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.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 MessageEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement MessageEvent Modifier and Type Class Description classDownstreamMessageEventThe default downstreamMessageEventimplementation.classUpstreamMessageEventThe default upstreamMessageEventimplementation.Methods in org.jboss.netty.channel with parameters of type MessageEvent Modifier and Type Method Description 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.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 MessageEvent in org.jboss.netty.example.discard
Methods in org.jboss.netty.example.discard with parameters of type MessageEvent Modifier and Type Method Description voidDiscardClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidDiscardServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.echo
Methods in org.jboss.netty.example.echo with parameters of type MessageEvent Modifier and Type Method Description voidEchoClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidEchoServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.factorial
Methods in org.jboss.netty.example.factorial with parameters of type MessageEvent Modifier and Type Method Description voidFactorialClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidFactorialServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.file
Methods in org.jboss.netty.example.http.file with parameters of type MessageEvent Modifier and Type Method Description voidHttpStaticFileServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.helloworld
Methods in org.jboss.netty.example.http.helloworld with parameters of type MessageEvent Modifier and Type Method Description voidHttpHelloWorldServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.snoop
Methods in org.jboss.netty.example.http.snoop with parameters of type MessageEvent Modifier and Type Method Description voidHttpSnoopClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpSnoopServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.upload
Methods in org.jboss.netty.example.http.upload with parameters of type MessageEvent Modifier and Type Method Description voidHttpUploadClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpUploadServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.websocketx.autobahn
Methods in org.jboss.netty.example.http.websocketx.autobahn with parameters of type MessageEvent Modifier and Type Method Description voidAutobahnServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.websocketx.client
Methods in org.jboss.netty.example.http.websocketx.client with parameters of type MessageEvent Modifier and Type Method Description voidWebSocketClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.websocketx.server
Methods in org.jboss.netty.example.http.websocketx.server with parameters of type MessageEvent Modifier and Type Method Description voidWebSocketServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.localtime
Methods in org.jboss.netty.example.localtime with parameters of type MessageEvent Modifier and Type Method Description voidLocalTimeClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidLocalTimeServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.objectecho
Methods in org.jboss.netty.example.objectecho with parameters of type MessageEvent Modifier and Type Method Description voidObjectEchoClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidObjectEchoServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.proxy
Methods in org.jboss.netty.example.proxy with parameters of type MessageEvent Modifier and Type Method Description voidHexDumpProxyInboundHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.qotm
Methods in org.jboss.netty.example.qotm with parameters of type MessageEvent Modifier and Type Method Description voidQuoteOfTheMomentClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidQuoteOfTheMomentServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.securechat
Methods in org.jboss.netty.example.securechat with parameters of type MessageEvent Modifier and Type Method Description voidSecureChatClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidSecureChatServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.telnet
Methods in org.jboss.netty.example.telnet with parameters of type MessageEvent Modifier and Type Method Description voidTelnetClientHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidTelnetServerHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.frame
Methods in org.jboss.netty.handler.codec.frame with parameters of type MessageEvent Modifier and Type Method Description voidFrameDecoder. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.http
Methods in org.jboss.netty.handler.codec.http with parameters of type MessageEvent Modifier and Type Method Description voidHttpChunkAggregator. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpContentDecoder. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpContentEncoder. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidHttpContentEncoder. writeRequested(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.http.websocketx
Methods in org.jboss.netty.handler.codec.http.websocketx with parameters of type MessageEvent Modifier and Type Method Description voidWebSocketServerProtocolHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidWebSocketServerProtocolHandshakeHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.oneone
Methods in org.jboss.netty.handler.codec.oneone with parameters of type MessageEvent Modifier and Type Method Description protected booleanOneToOneEncoder. doEncode(ChannelHandlerContext ctx, MessageEvent e)protected booleanOneToOneStrictEncoder. doEncode(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.replay
Methods in org.jboss.netty.handler.codec.replay with parameters of type MessageEvent Modifier and Type Method Description voidReplayingDecoder. messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy with parameters of type MessageEvent Modifier and Type Method Description voidSpdyHttpResponseStreamIdHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidSpdySessionHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidSpdyHttpResponseStreamIdHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.queue
Methods in org.jboss.netty.handler.queue that return types with arguments of type MessageEvent Modifier and Type Method Description protected Queue<MessageEvent>BufferedWriteHandler. getQueue()Returns the queue which stores the write requests.Methods in org.jboss.netty.handler.queue with parameters of type MessageEvent Modifier and Type Method Description 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().Constructor parameters in org.jboss.netty.handler.queue with type arguments of type MessageEvent Constructor Description BufferedWriteHandler(Queue<MessageEvent> queue)Creates a new instance with the specified thread-safe unboundedQueueand without buffer consolidation.BufferedWriteHandler(Queue<MessageEvent> queue, boolean consolidateOnFlush)Creates a new instance with the specified thread-safe unboundedQueue. -
Uses of MessageEvent in org.jboss.netty.handler.timeout
Methods in org.jboss.netty.handler.timeout with parameters of type MessageEvent Modifier and Type Method Description protected longWriteTimeoutHandler. getTimeoutMillis(MessageEvent e)Returns the write timeout of the specified event.voidIdleStateHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidReadTimeoutHandler. messageReceived(ChannelHandlerContext ctx, MessageEvent e)voidWriteTimeoutHandler. writeRequested(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.traffic
Methods in org.jboss.netty.handler.traffic with parameters of type MessageEvent Modifier and Type Method Description 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)
-