mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
27 lines
1.6 KiB
Java
27 lines
1.6 KiB
Java
|
package androidx.lifecycle;
|
||
|
|
||
|
import kotlin.Metadata;
|
||
|
import kotlin.jvm.internal.Intrinsics;
|
||
|
import kotlinx.coroutines.Dispatchers;
|
||
|
import kotlinx.coroutines.Job;
|
||
|
import kotlinx.coroutines.SupervisorKt;
|
||
|
|
||
|
/* compiled from: Lifecycle.kt */
|
||
|
@Metadata(d1 = {"\u0000\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\"\u0015\u0010\u0000\u001a\u00020\u0001*\u00020\u00028F¢\u0006\u0006\u001a\u0004\b\u0003\u0010\u0004¨\u0006\u0005"}, d2 = {"coroutineScope", "Landroidx/lifecycle/LifecycleCoroutineScope;", "Landroidx/lifecycle/Lifecycle;", "getCoroutineScope", "(Landroidx/lifecycle/Lifecycle;)Landroidx/lifecycle/LifecycleCoroutineScope;", "lifecycle-common"}, k = 2, mv = {1, 8, 0}, xi = 48)
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class LifecycleKt {
|
||
|
public static final LifecycleCoroutineScope getCoroutineScope(Lifecycle lifecycle) {
|
||
|
LifecycleCoroutineScopeImpl lifecycleCoroutineScopeImpl;
|
||
|
Intrinsics.checkNotNullParameter(lifecycle, "<this>");
|
||
|
do {
|
||
|
LifecycleCoroutineScopeImpl lifecycleCoroutineScopeImpl2 = (LifecycleCoroutineScopeImpl) lifecycle.getInternalScopeRef().get();
|
||
|
if (lifecycleCoroutineScopeImpl2 != null) {
|
||
|
return lifecycleCoroutineScopeImpl2;
|
||
|
}
|
||
|
lifecycleCoroutineScopeImpl = new LifecycleCoroutineScopeImpl(lifecycle, SupervisorKt.SupervisorJob$default((Job) null, 1, (Object) null).plus(Dispatchers.getMain().getImmediate()));
|
||
|
} while (!lifecycle.getInternalScopeRef().compareAndSet(null, lifecycleCoroutineScopeImpl));
|
||
|
lifecycleCoroutineScopeImpl.register();
|
||
|
return lifecycleCoroutineScopeImpl;
|
||
|
}
|
||
|
}
|