Uses of Interface
net.gleamynode.netty2.EventDispatcher

Uses of EventDispatcher in net.gleamynode.netty2
 

Subinterfaces of EventDispatcher in net.gleamynode.netty2
 interface OrderedEventDispatcherMBean
          JMX (Java Management eXtenstions) support interface for OrderedEventDispatcher.
 interface SimpleEventDispatcherMBean
          JMX (Java Management eXtenstions) support interface for SimpleEventDispatcher.
 interface ThreadPooledEventDispatcher
          An interface for thread-pooled event dispatchers.
 interface ThreadPooledEventDispatcherMBean
          JMX (Java Management eXtenstions) support interface for thread-pooled event dispatchers.
 

Classes in net.gleamynode.netty2 that implement EventDispatcher
 class AbstractThreadPooledEventDispatcher
          A base class for thread-pooled event dispatchers.
 class LowLatencyEventDispatcher
          An EventDispatcherthat provides low latency.
 class OrderedEventDispatcher
          A thread-pooled EventDispatcherthat the events for the same session occurs in the same order it was generated actually.
 class SimpleEventDispatcher
          A thread-pooled EventDispatcherthat the events for the same session does NOT occur in the same order it was generated actually.
 

Methods in net.gleamynode.netty2 that return EventDispatcher
 EventDispatcher Session.getEventDispatcher()
          Returns the EventDispatcherwho dispatches the events of this session.
 EventDispatcher SessionServer.getEventDispatcher()
          Returns the EventDispatcherthat will be passed to newly created sessions' constructor.
 

Methods in net.gleamynode.netty2 with parameters of type EventDispatcher
 void Session.setEventDispatcher(EventDispatcher eventDispatcher)
          Sets the EventDispatcherwho dispatches the events of this session.
 void SessionServer.setEventDispatcher(EventDispatcher eventDispatcher)
          Sets the EventDispatcherthat will be passed to newly created sessions' constructor.
 

Constructors in net.gleamynode.netty2 with parameters of type EventDispatcher
Session(IoProcessor ioProcessor, SocketAddress socketAddress, MessageRecognizer messageRecognizer, EventDispatcher eventDispatcher)
          Constructs a new session that connects to the specified socket address with the default settings.
Session(IoProcessor ioProcessor, SocketAddress socketAddress, MessageRecognizer messageRecognizer, EventDispatcher eventDispatcher, SessionConfig config)
          Constructs a new session that connects to the specified socket address with the specified settings.
Session(IoProcessor ioProcessor, SocketChannel channel, MessageRecognizer messageRecognizer, EventDispatcher eventDispatcher)
          Constructs a new session with the specified channel and with the default settings.
Session(IoProcessor ioProcessor, SocketChannel channel, MessageRecognizer messageRecognizer, EventDispatcher eventDispatcher, SessionConfig config)
          Constructs a new session with the specified channel and with the specified settings.
 



Copyright © 2004-2008 Trustin Lee. All Rights Reserved.