- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
26 lines
854 B
Java
26 lines
854 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlinx.coroutines.internal.MainDispatcherLoader;
|
|
import kotlinx.coroutines.scheduling.DefaultIoScheduler;
|
|
import kotlinx.coroutines.scheduling.DefaultScheduler;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class Dispatchers {
|
|
public static final Dispatchers INSTANCE = new Dispatchers();
|
|
public static final CoroutineDispatcher Default = DefaultScheduler.INSTANCE;
|
|
public static final CoroutineDispatcher Unconfined = Unconfined.INSTANCE;
|
|
public static final CoroutineDispatcher IO = DefaultIoScheduler.INSTANCE;
|
|
|
|
public static final CoroutineDispatcher getDefault() {
|
|
return Default;
|
|
}
|
|
|
|
public static final CoroutineDispatcher getIO() {
|
|
return IO;
|
|
}
|
|
|
|
public static final MainCoroutineDispatcher getMain() {
|
|
return MainDispatcherLoader.dispatcher;
|
|
}
|
|
}
|