mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-24 08:02:37 -06:00
58 lines
2.9 KiB
Java
58 lines
2.9 KiB
Java
|
package kotlinx.coroutines;
|
||
|
|
||
|
import kotlin.Metadata;
|
||
|
import kotlin.jvm.JvmStatic;
|
||
|
import kotlinx.coroutines.internal.MainDispatcherLoader;
|
||
|
import kotlinx.coroutines.scheduling.DefaultIoScheduler;
|
||
|
import kotlinx.coroutines.scheduling.DefaultScheduler;
|
||
|
|
||
|
/* compiled from: Dispatchers.kt */
|
||
|
@Metadata(d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0010\u0002\n\u0000\bÆ\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\b\u0010\u0013\u001a\u00020\u0014H\u0007R\u001c\u0010\u0003\u001a\u00020\u00048\u0006X\u0087\u0004¢\u0006\u000e\n\u0000\u0012\u0004\b\u0005\u0010\u0002\u001a\u0004\b\u0006\u0010\u0007R\u001c\u0010\b\u001a\u00020\u00048\u0006X\u0087\u0004¢\u0006\u000e\n\u0000\u0012\u0004\b\t\u0010\u0002\u001a\u0004\b\n\u0010\u0007R\u001a\u0010\u000b\u001a\u00020\f8FX\u0087\u0004¢\u0006\f\u0012\u0004\b\r\u0010\u0002\u001a\u0004\b\u000e\u0010\u000fR\u001c\u0010\u0010\u001a\u00020\u00048\u0006X\u0087\u0004¢\u0006\u000e\n\u0000\u0012\u0004\b\u0011\u0010\u0002\u001a\u0004\b\u0012\u0010\u0007¨\u0006\u0015"}, d2 = {"Lkotlinx/coroutines/Dispatchers;", "", "()V", "Default", "Lkotlinx/coroutines/CoroutineDispatcher;", "getDefault$annotations", "getDefault", "()Lkotlinx/coroutines/CoroutineDispatcher;", "IO", "getIO$annotations", "getIO", "Main", "Lkotlinx/coroutines/MainCoroutineDispatcher;", "getMain$annotations", "getMain", "()Lkotlinx/coroutines/MainCoroutineDispatcher;", "Unconfined", "getUnconfined$annotations", "getUnconfined", "shutdown", "", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Dispatchers {
|
||
|
public static final Dispatchers INSTANCE = new Dispatchers();
|
||
|
private static final CoroutineDispatcher Default = DefaultScheduler.INSTANCE;
|
||
|
private static final CoroutineDispatcher Unconfined = Unconfined.INSTANCE;
|
||
|
private static final CoroutineDispatcher IO = DefaultIoScheduler.INSTANCE;
|
||
|
|
||
|
public static final CoroutineDispatcher getDefault() {
|
||
|
return Default;
|
||
|
}
|
||
|
|
||
|
@JvmStatic
|
||
|
public static /* synthetic */ void getDefault$annotations() {
|
||
|
}
|
||
|
|
||
|
public static final CoroutineDispatcher getIO() {
|
||
|
return IO;
|
||
|
}
|
||
|
|
||
|
@JvmStatic
|
||
|
public static /* synthetic */ void getIO$annotations() {
|
||
|
}
|
||
|
|
||
|
@JvmStatic
|
||
|
public static /* synthetic */ void getMain$annotations() {
|
||
|
}
|
||
|
|
||
|
public static final CoroutineDispatcher getUnconfined() {
|
||
|
return Unconfined;
|
||
|
}
|
||
|
|
||
|
@JvmStatic
|
||
|
public static /* synthetic */ void getUnconfined$annotations() {
|
||
|
}
|
||
|
|
||
|
private Dispatchers() {
|
||
|
}
|
||
|
|
||
|
public static final MainCoroutineDispatcher getMain() {
|
||
|
return MainDispatcherLoader.dispatcher;
|
||
|
}
|
||
|
|
||
|
public final void shutdown() {
|
||
|
DefaultExecutor.INSTANCE.shutdown();
|
||
|
DefaultScheduler.INSTANCE.shutdown$kotlinx_coroutines_core();
|
||
|
}
|
||
|
}
|