Class AsyncEventBus

java.lang.Object
com.google.common.eventbus.EventBus
com.google.common.eventbus.AsyncEventBus

@Beta @Deprecated(since="2022-12-01") public class AsyncEventBus extends EventBus
Deprecated.
The Google Guava Core Libraries are deprecated and will not be part of the AEM SDK after April 2023
An EventBus that takes the Executor of your choice and uses it to dispatch events, allowing dispatch to occur asynchronously.
Since:
10.0
  • Constructor Details

    • AsyncEventBus

      public AsyncEventBus(String identifier, Executor executor)
      Deprecated.
      Creates a new AsyncEventBus that will use executor to dispatch events. Assigns identifier as the bus's name for logging purposes.
      Parameters:
      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.
    • AsyncEventBus

      public AsyncEventBus(Executor executor)
      Deprecated.
      Creates a new AsyncEventBus that will use executor to dispatch events.
      Parameters:
      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.