- 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
38 lines
1.6 KiB
Java
38 lines
1.6 KiB
Java
package androidx.lifecycle;
|
|
|
|
import kotlin.coroutines.CoroutineContext;
|
|
import kotlin.jvm.functions.Function2;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlinx.coroutines.BuildersKt__Builders_commonKt;
|
|
import kotlinx.coroutines.CoroutineScope;
|
|
import kotlinx.coroutines.Job;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class LifecycleCoroutineScope implements CoroutineScope {
|
|
@Override // kotlinx.coroutines.CoroutineScope
|
|
public abstract /* synthetic */ CoroutineContext getCoroutineContext();
|
|
|
|
public abstract Lifecycle getLifecycle$lifecycle_common();
|
|
|
|
public final Job launchWhenCreated(Function2 block) {
|
|
Job launch$default;
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
launch$default = BuildersKt__Builders_commonKt.launch$default(this, null, null, new LifecycleCoroutineScope$launchWhenCreated$1(this, block, null), 3, null);
|
|
return launch$default;
|
|
}
|
|
|
|
public final Job launchWhenStarted(Function2 block) {
|
|
Job launch$default;
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
launch$default = BuildersKt__Builders_commonKt.launch$default(this, null, null, new LifecycleCoroutineScope$launchWhenStarted$1(this, block, null), 3, null);
|
|
return launch$default;
|
|
}
|
|
|
|
public final Job launchWhenResumed(Function2 block) {
|
|
Job launch$default;
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
launch$default = BuildersKt__Builders_commonKt.launch$default(this, null, null, new LifecycleCoroutineScope$launchWhenResumed$1(this, block, null), 3, null);
|
|
return launch$default;
|
|
}
|
|
}
|