Uses of Interface
org.jboss.netty.channel.MessageEvent
Packages that use MessageEvent
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual transport that enables the communication between the two
parties in the same virtual machine.
An HTTP-based client-side
SocketChannel
and its corresponding server-side Servlet implementation that make your
existing server application work in a firewalled network.NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
This package is intended for use with testing against the Python
AutoBahn test suite.
This is an example web service client.
This package contains an example web socket web server.
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.
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
Simplistic abstract classes which help implement encoder and decoder that
transform an object into another object and vice versa.
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.
Writes very large data stream asynchronously neither spending a lot of
memory nor getting
OutOfMemoryError.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 MessageEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement MessageEventModifier and TypeClassDescriptionclassThe default downstreamMessageEventimplementation.classThe default upstreamMessageEventimplementation.Methods in org.jboss.netty.channel with parameters of type MessageEventModifier and TypeMethodDescriptionvoidSimpleChannelHandler.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.channel.local
Fields in org.jboss.netty.channel.local with type parameters of type MessageEventModifier and TypeFieldDescription(package private) final Queue<MessageEvent> DefaultLocalChannel.writeBuffer -
Uses of MessageEvent in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http with parameters of type MessageEventModifier and TypeMethodDescriptionvoidHttpTunnelingClientSocketChannel.ServletChannelHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) voidHttpTunnelingServlet.OutboundConnectionHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.channel.socket.nio
Fields in org.jboss.netty.channel.socket.nio declared as MessageEventModifier and TypeFieldDescription(package private) MessageEventAbstractNioChannel.currentWriteEventThe current writeMessageEventFields in org.jboss.netty.channel.socket.nio with type parameters of type MessageEventModifier and TypeFieldDescriptionprivate final Queue<MessageEvent> AbstractNioChannel.WriteRequestQueue.queueMethods in org.jboss.netty.channel.socket.nio that return MessageEventMethods in org.jboss.netty.channel.socket.nio with parameters of type MessageEventModifier and TypeMethodDescriptionprivate intAbstractNioChannel.WriteRequestQueue.getMessageSize(MessageEvent e) booleanAbstractNioChannel.WriteRequestQueue.offer(MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.discard
Methods in org.jboss.netty.example.discard with parameters of type MessageEventModifier and TypeMethodDescriptionvoidDiscardClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidEchoClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidFactorialClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidHttpStaticFileServerHandler.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 MessageEventModifier and TypeMethodDescriptionvoidHttpHelloWorldServerHandler.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 MessageEventModifier and TypeMethodDescriptionvoidHttpSnoopClientHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) voidHttpSnoopServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) private static voidHttpSnoopServerHandler.send100Continue(MessageEvent e) private voidHttpSnoopServerHandler.writeResponse(MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.example.http.upload
Methods in org.jboss.netty.example.http.upload with parameters of type MessageEventModifier and TypeMethodDescriptionvoidHttpUploadClientHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) voidHttpUploadServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) private voidHttpUploadServerHandler.writeMenu(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 MessageEventModifier and TypeMethodDescriptionvoidAutobahnServerHandler.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 MessageEventModifier and TypeMethodDescriptionvoidWebSocketClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidWebSocketServerHandler.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 MessageEventModifier and TypeMethodDescriptionvoidLocalTimeClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidObjectEchoClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidHexDumpProxyInboundHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) voidHexDumpProxyInboundHandler.OutboundHandler.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 MessageEventModifier and TypeMethodDescriptionvoidQuoteOfTheMomentClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidSecureChatClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidTelnetClientHandler.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 MessageEventModifier and TypeMethodDescriptionvoidFrameDecoder.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 MessageEventModifier and TypeMethodDescriptionvoidHttpChunkAggregator.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 MessageEventModifier and TypeMethodDescriptionvoidWebSocketServerProtocolHandler.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 MessageEventModifier and TypeMethodDescriptionprotected 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 MessageEventModifier and TypeMethodDescriptionvoidReplayingDecoder.messageReceived(ChannelHandlerContext ctx, MessageEvent e) -
Uses of MessageEvent in org.jboss.netty.handler.codec.spdy
Fields in org.jboss.netty.handler.codec.spdy declared as MessageEventFields in org.jboss.netty.handler.codec.spdy with type parameters of type MessageEventModifier and TypeFieldDescriptionprivate final ConcurrentLinkedQueue<MessageEvent> SpdySession.StreamState.pendingWriteQueueMethods in org.jboss.netty.handler.codec.spdy that return MessageEventModifier and TypeMethodDescription(package private) MessageEventSpdySession.getPendingWrite(int streamId) (package private) MessageEventSpdySession.StreamState.getPendingWrite()(package private) MessageEventSpdySession.removePendingWrite(int streamId) (package private) MessageEventSpdySession.StreamState.removePendingWrite()Methods in org.jboss.netty.handler.codec.spdy with parameters of type MessageEventModifier and TypeMethodDescriptionprivate ChannelFutureSpdyHttpEncoder.getMessageFuture(ChannelHandlerContext ctx, MessageEvent e, int streamId, HttpMessage httpMessage) voidSpdyHttpResponseStreamIdHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) voidSpdySessionHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e) (package private) booleanSpdySession.putPendingWrite(int streamId, MessageEvent evt) (package private) booleanSpdySession.StreamState.putPendingWrite(MessageEvent evt) voidSpdyHttpResponseStreamIdHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent e) Constructors in org.jboss.netty.handler.codec.spdy with parameters of type MessageEventModifierConstructorDescription(package private) -
Uses of MessageEvent in org.jboss.netty.handler.queue
Fields in org.jboss.netty.handler.queue with type parameters of type MessageEventMethods in org.jboss.netty.handler.queue that return types with arguments of type MessageEventModifier and TypeMethodDescriptionprivate List<MessageEvent> BufferedWriteHandler.consolidatedWrite(List<MessageEvent> pendingWrites) protected Queue<MessageEvent> BufferedWriteHandler.getQueue()Returns the queue which stores the write requests.Methods in org.jboss.netty.handler.queue with parameters of type MessageEventModifier and TypeMethodDescriptionprivate EBlockingReadHandler.getMessage(MessageEvent 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().Method parameters in org.jboss.netty.handler.queue with type arguments of type MessageEventModifier and TypeMethodDescriptionprivate List<MessageEvent> BufferedWriteHandler.consolidatedWrite(List<MessageEvent> pendingWrites) Constructor parameters in org.jboss.netty.handler.queue with type arguments of type MessageEventModifierConstructorDescriptionBufferedWriteHandler(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.ssl
Fields in org.jboss.netty.handler.ssl with type parameters of type MessageEventModifier and TypeFieldDescriptionprivate final Queue<MessageEvent> SslHandler.pendingEncryptedWritesMethods in org.jboss.netty.handler.ssl with parameters of type MessageEventModifier and TypeMethodDescriptionprivate voidSslHandler.offerEncryptedWriteRequest(MessageEvent encryptedWrite) -
Uses of MessageEvent in org.jboss.netty.handler.stream
Fields in org.jboss.netty.handler.stream declared as MessageEventFields in org.jboss.netty.handler.stream with type parameters of type MessageEvent -
Uses of MessageEvent in org.jboss.netty.handler.timeout
Methods in org.jboss.netty.handler.timeout with parameters of type MessageEventModifier and TypeMethodDescriptionprotected 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
Fields in org.jboss.netty.handler.traffic declared as MessageEventModifier and TypeFieldDescription(package private) final MessageEventChannelTrafficShapingHandler.ToSend.toSend(package private) final MessageEventGlobalChannelTrafficShapingHandler.ToSend.toSend(package private) final MessageEventGlobalTrafficShapingHandler.ToSend.toSendMethods in org.jboss.netty.handler.traffic with parameters of type MessageEventModifier and TypeMethodDescriptionprotected 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.(package private) abstract voidAbstractTrafficShapingHandler.submitWrite(ChannelHandlerContext ctx, MessageEvent evt, long size, long delay, long now) (package private) voidChannelTrafficShapingHandler.submitWrite(ChannelHandlerContext ctx, MessageEvent evt, long size, long delay, long now) protected voidGlobalChannelTrafficShapingHandler.submitWrite(ChannelHandlerContext ctx, MessageEvent evt, long size, long writedelay, long now) (package private) voidGlobalTrafficShapingHandler.submitWrite(ChannelHandlerContext ctx, MessageEvent evt, long size, long writedelay, long now) voidAbstractTrafficShapingHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent evt) voidGlobalChannelTrafficShapingHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent evt) Constructors in org.jboss.netty.handler.traffic with parameters of type MessageEventModifierConstructorDescriptionprivateToSend(long delay, MessageEvent toSend) privateToSend(long delay, MessageEvent toSend, long size) privateToSend(long delay, MessageEvent toSend, long size)