Package | Description |
---|---|
eneter.messaging.messagingsystems.messagingsystembase |
Messaging system interfaces.
|
eneter.messaging.threading.dispatching |
Receiving messages and events according to specified thread mode.
|
Modifier and Type | Method and Description |
---|---|
IThreadDispatcher |
IDuplexOutputChannel.getDispatcher()
Returns dispatcher which defines the threading model for received messages and raised events.
|
IThreadDispatcher |
IDuplexInputChannel.getDispatcher()
Returns dispatcher that defines the threading model for raising events.
|
Modifier and Type | Method and Description |
---|---|
IThreadDispatcher |
SyncDispatching.getDispatcher()
Returns dispatcher that queues callback methods and processes them one by one.
|
IThreadDispatcher |
NoDispatching.getDispatcher()
Returns dispatcher which invokes directly without routing into a thread.
|
IThreadDispatcher |
IThreadDispatcherProvider.getDispatcher()
Returns dispatcher that will invoke methods according to its threading model.
|
IThreadDispatcher |
AsyncDispatching.getDispatcher()
Returns dispatcher which invokes asynchronously in a thread from the thread-pool.
|