Returns a dispatcher that queues events that are posted reentrantly on a thread that is already dispatching an event, guaranteeing that all events posted on a single thread are dispatched to all subscribers in the order they are posted. When all subscribers are dispatched to using a direct</i
()
| 45 | * any events B and C that are posted to the event bus by the subscribers to A. |
| 46 | */ |
| 47 | static Dispatcher perThreadDispatchQueue() { |
| 48 | return new PerThreadQueuedDispatcher(); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Returns a dispatcher that queues events that are posted in a single global queue. This behavior |