what-the-bank/sources/com/google/common/eventbus/AsyncEventBus.java

21 lines
759 B
Java

package com.google.common.eventbus;
import com.google.common.eventbus.EventBus;
import java.util.concurrent.Executor;
import o.C13001fNn;
/* loaded from: classes2.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(C13001fNn.DEFAULT_IDENTIFIER, executor, Dispatcher.legacyAsync(), subscriberExceptionHandler);
}
public AsyncEventBus(Executor executor) {
super(C13001fNn.DEFAULT_IDENTIFIER, executor, Dispatcher.legacyAsync(), EventBus.LoggingHandler.INSTANCE);
}
}