mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
21 lines
734 B
Java
21 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);
|
||
|
}
|
||
|
}
|