- 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
25 lines
838 B
Java
25 lines
838 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlin.coroutines.Continuation;
|
|
import kotlinx.coroutines.internal.ScopeCoroutine;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class TimeoutCoroutine extends ScopeCoroutine implements Runnable {
|
|
public final long time;
|
|
|
|
public TimeoutCoroutine(long j, Continuation continuation) {
|
|
super(continuation.getContext(), continuation);
|
|
this.time = j;
|
|
}
|
|
|
|
@Override // java.lang.Runnable
|
|
public void run() {
|
|
cancelCoroutine(TimeoutKt.TimeoutCancellationException(this.time, DelayKt.getDelay(getContext()), this));
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.AbstractCoroutine, kotlinx.coroutines.JobSupport
|
|
public String nameString$kotlinx_coroutines_core() {
|
|
return super.nameString$kotlinx_coroutines_core() + "(timeMillis=" + this.time + ')';
|
|
}
|
|
}
|