- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
638 B
Java
20 lines
638 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlin.Unit;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class ResumeUndispatchedRunnable implements Runnable {
|
|
public final CancellableContinuation continuation;
|
|
public final CoroutineDispatcher dispatcher;
|
|
|
|
public ResumeUndispatchedRunnable(CoroutineDispatcher coroutineDispatcher, CancellableContinuation cancellableContinuation) {
|
|
this.dispatcher = coroutineDispatcher;
|
|
this.continuation = cancellableContinuation;
|
|
}
|
|
|
|
@Override // java.lang.Runnable
|
|
public void run() {
|
|
this.continuation.resumeUndispatched(this.dispatcher, Unit.INSTANCE);
|
|
}
|
|
}
|