Files
rr3-apk/decompiled/sources/kotlinx/coroutines/CompletableDeferredImpl.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

40 lines
1.3 KiB
Java

package kotlinx.coroutines;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
/* loaded from: classes5.dex */
public final class CompletableDeferredImpl extends JobSupport implements CompletableDeferred {
@Override // kotlinx.coroutines.JobSupport
public boolean getOnCancelComplete$kotlinx_coroutines_core() {
return true;
}
public CompletableDeferredImpl(Job job) {
super(true);
initParentJob(job);
}
@Override // kotlinx.coroutines.Deferred
public Object getCompleted() {
return getCompletedInternal$kotlinx_coroutines_core();
}
@Override // kotlinx.coroutines.Deferred
public Object await(Continuation continuation) {
Object awaitInternal = awaitInternal(continuation);
IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
return awaitInternal;
}
@Override // kotlinx.coroutines.CompletableDeferred
public boolean complete(Object obj) {
return makeCompleting$kotlinx_coroutines_core(obj);
}
@Override // kotlinx.coroutines.CompletableDeferred
public boolean completeExceptionally(Throwable th) {
return makeCompleting$kotlinx_coroutines_core(new CompletedExceptionally(th, false, 2, null));
}
}