|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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 EventDispatcher that provides low latency. |
class |
OrderedEventDispatcher
A thread-pooled EventDispatcher that the events for the same session
occurs in the same order it was generated actually. |
class |
SimpleEventDispatcher
A thread-pooled EventDispatcher that 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 |
SessionServer.getEventDispatcher()
Returns the EventDispatcher that will be passed to newly created
sessions' constructor. |
EventDispatcher |
Session.getEventDispatcher()
Returns the EventDispatcher who dispatches the events of this
session. |
Methods in net.gleamynode.netty2 with parameters of type EventDispatcher | |
---|---|
void |
SessionServer.setEventDispatcher(EventDispatcher eventDispatcher)
Sets the EventDispatcher that will be passed to newly created
sessions' constructor. |
void |
Session.setEventDispatcher(EventDispatcher eventDispatcher)
Sets the EventDispatcher who dispatches the events of this
session. |
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. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |