@Beta public class AsyncEventBus extends EventBus
EventBus
that takes the Executor of your choice and uses it to dispatch events,
allowing dispatch to occur asynchronously.Constructor and Description |
---|
AsyncEventBus(Executor executor)
Creates a new AsyncEventBus that will use
executor to dispatch events. |
AsyncEventBus(Executor executor,
SubscriberExceptionHandler subscriberExceptionHandler)
Creates a new AsyncEventBus that will use
executor to dispatch events. |
AsyncEventBus(String identifier,
Executor executor)
Creates a new AsyncEventBus that will use
executor to dispatch events. |
public AsyncEventBus(String identifier, Executor executor)
executor
to dispatch events. Assigns identifier
as the bus's name for logging purposes.identifier
- short name for the bus, for logging purposes.executor
- Executor to use to dispatch events. It is the caller's responsibility to shut
down the executor after the last event has been posted to this event bus.public AsyncEventBus(Executor executor, SubscriberExceptionHandler subscriberExceptionHandler)
executor
to dispatch events.executor
- Executor to use to dispatch events. It is the caller's responsibility to shut
down the executor after the last event has been posted to this event bus.subscriberExceptionHandler
- Handler used to handle exceptions thrown from subscribers.
See SubscriberExceptionHandler
for more information.public AsyncEventBus(Executor executor)
executor
to dispatch events.executor
- Executor to use to dispatch events. It is the caller's responsibility to shut
down the executor after the last event has been posted to this event bus.Copyright © 2010–2019. All rights reserved.