Uses of Interface
org.jboss.netty.channel.MessageEvent

Packages that use MessageEvent
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.snoop   
org.jboss.netty.example.http.websocket   
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.replay Specialized variation of FrameDecoder which enables implementation of a non-blocking decoder in the blocking I/O paradigm. 
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 a Timer
 

Uses of MessageEvent in org.jboss.netty.channel
 

Classes in org.jboss.netty.channel that implement MessageEvent
 class DownstreamMessageEvent
          The default downstream MessageEvent implementation.
 class UpstreamMessageEvent
          The default upstream MessageEvent implementation.
 

Methods in org.jboss.netty.channel with parameters of type MessageEvent
 void SimpleChannelUpstreamHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
          Invoked when a message object (e.g: ChannelBuffer) was received from a remote peer.
 void SimpleChannelHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
          Invoked when a message object (e.g: ChannelBuffer) was received from a remote peer.
 void SimpleChannelDownstreamHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent e)
          Invoked when Channel.write(Object) is called.
 void SimpleChannelHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent e)
          Invoked when Channel.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
 void DiscardServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void DiscardClientHandler.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
 void EchoClientHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void EchoServerHandler.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
 void FactorialClientHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void FactorialServerHandler.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
 void HttpStaticFileServerHandler.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
 void HttpResponseHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void HttpRequestHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 

Uses of MessageEvent in org.jboss.netty.example.http.websocket
 

Methods in org.jboss.netty.example.http.websocket with parameters of type MessageEvent
 void WebSocketServerHandler.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
 void LocalTimeServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void LocalTimeClientHandler.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
 void ObjectEchoServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void ObjectEchoClientHandler.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
 void HexDumpProxyInboundHandler.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
 void QuoteOfTheMomentServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void QuoteOfTheMomentClientHandler.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
 void SecureChatServerHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void SecureChatClientHandler.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
 void TelnetClientHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void TelnetServerHandler.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
 void FrameDecoder.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
 void HttpContentDecoder.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void HttpChunkAggregator.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void HttpContentEncoder.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void HttpContentEncoder.writeRequested(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
 void ReplayingDecoder.messageReceived(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
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
 void BlockingReadHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void BufferedWriteHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent e)
          Stores all write requests to the queue so that they are actually written on BufferedWriteHandler.flush().
 

Constructor parameters in org.jboss.netty.handler.queue with type arguments of type MessageEvent
BufferedWriteHandler(Queue<MessageEvent> queue)
          Creates a new instance with the specified thread-safe unbounded Queue and without buffer consolidation.
BufferedWriteHandler(Queue<MessageEvent> queue, boolean consolidateOnFlush)
          Creates a new instance with the specified thread-safe unbounded Queue.
 

Uses of MessageEvent in org.jboss.netty.handler.timeout
 

Methods in org.jboss.netty.handler.timeout with parameters of type MessageEvent
protected  long WriteTimeoutHandler.getTimeoutMillis(MessageEvent e)
           
 void ReadTimeoutHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void IdleStateHandler.messageReceived(ChannelHandlerContext ctx, MessageEvent e)
           
 void WriteTimeoutHandler.writeRequested(ChannelHandlerContext ctx, MessageEvent e)
           
 



Copyright © 2008-2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.