Uses of Interface
eneter.messaging.threading.dispatching.IThreadDispatcher

Packages that use IThreadDispatcher
eneter.messaging.messagingsystems.messagingsystembase Messaging system interfaces. 
eneter.messaging.threading.dispatching Receiving messages and events according to specified thread mode. 
 

Uses of IThreadDispatcher in eneter.messaging.messagingsystems.messagingsystembase
 

Methods in eneter.messaging.messagingsystems.messagingsystembase that return IThreadDispatcher
 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.
 

Uses of IThreadDispatcher in eneter.messaging.threading.dispatching
 

Methods in eneter.messaging.threading.dispatching that return IThreadDispatcher
 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.
 IThreadDispatcher AndroidDispatching.getDispatcher()
          Returns the thread dispatcher which uses the Android Handler class.