- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
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;
|
|
}
|
|
}
|