Rabbit-R1/android (non root)/java/sources/com/google/common/eventbus/AsyncEventBus.java

21 lines
734 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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);
}
}