discord-jadx/app/src/main/java/kotlinx/coroutines/CancellableContinuation.java

25 lines
608 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package kotlinx.coroutines;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.jvm.functions.Function1;
/* compiled from: CancellableContinuation.kt */
2022-03-02 20:59:20 +00:00
/* loaded from: classes3.dex */
2021-06-27 20:44:35 +00:00
public interface CancellableContinuation<T> extends Continuation<T> {
boolean a();
2021-12-17 22:03:14 +00:00
Object c(T t, Object obj);
2021-06-27 20:44:35 +00:00
2021-12-17 22:03:14 +00:00
void f(Function1<? super Throwable, Unit> function1);
2021-06-27 20:44:35 +00:00
Object g(Throwable th);
Object h(T t, Object obj, Function1<? super Throwable, Unit> function1);
2021-07-09 21:07:36 +00:00
void i(CoroutineDispatcher coroutineDispatcher, T t);
2021-06-27 20:44:35 +00:00
2021-12-17 22:03:14 +00:00
boolean k(Throwable th);
2021-06-27 20:44:35 +00:00
2021-12-17 22:03:14 +00:00
void r(Object obj);
2021-06-27 20:44:35 +00:00
}