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

25 lines
608 B
Java

package kotlinx.coroutines;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.jvm.functions.Function1;
/* compiled from: CancellableContinuation.kt */
/* loaded from: classes3.dex */
public interface CancellableContinuation<T> extends Continuation<T> {
boolean a();
Object c(T t, Object obj);
void f(Function1<? super Throwable, Unit> function1);
Object g(Throwable th);
Object h(T t, Object obj, Function1<? super Throwable, Unit> function1);
void i(CoroutineDispatcher coroutineDispatcher, T t);
boolean k(Throwable th);
void r(Object obj);
}