- 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
32 lines
1011 B
Java
32 lines
1011 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlinx.coroutines.internal.LimitedDispatcherKt;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class MainCoroutineDispatcher extends CoroutineDispatcher {
|
|
public abstract MainCoroutineDispatcher getImmediate();
|
|
|
|
@Override // kotlinx.coroutines.CoroutineDispatcher
|
|
public CoroutineDispatcher limitedParallelism(int i) {
|
|
LimitedDispatcherKt.checkParallelism(i);
|
|
return this;
|
|
}
|
|
|
|
public final String toStringInternalImpl() {
|
|
MainCoroutineDispatcher mainCoroutineDispatcher;
|
|
MainCoroutineDispatcher main = Dispatchers.getMain();
|
|
if (this == main) {
|
|
return "Dispatchers.Main";
|
|
}
|
|
try {
|
|
mainCoroutineDispatcher = main.getImmediate();
|
|
} catch (UnsupportedOperationException unused) {
|
|
mainCoroutineDispatcher = null;
|
|
}
|
|
if (this == mainCoroutineDispatcher) {
|
|
return "Dispatchers.Main.immediate";
|
|
}
|
|
return null;
|
|
}
|
|
}
|