Rabbit-R1/android (non root)/java/sources/com/google/common/eventbus/AsyncEventBus.java
2024-05-21 17:08:36 -04:00

20 lines
734 B
Java

package com.google.common.eventbus;
import com.google.common.eventbus.EventBus;
import java.util.concurrent.Executor;
@ElementTypesAreNonnullByDefault
/* loaded from: classes3.dex */
public class AsyncEventBus extends EventBus {
public AsyncEventBus(String str, Executor executor) {
super(str, executor, Dispatcher.legacyAsync(), EventBus.LoggingHandler.INSTANCE);
}
public AsyncEventBus(Executor executor, SubscriberExceptionHandler subscriberExceptionHandler) {
super("default", executor, Dispatcher.legacyAsync(), subscriberExceptionHandler);
}
public AsyncEventBus(Executor executor) {
super("default", executor, Dispatcher.legacyAsync(), EventBus.LoggingHandler.INSTANCE);
}
}