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

24 lines
576 B
Java

package kotlinx.coroutines;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.jvm.functions.Function1;
/* compiled from: CancellableContinuation.kt */
public interface CancellableContinuation<T> extends Continuation<T> {
boolean a();
Object b(T t, Object obj);
void e(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 j(Throwable th);
void k(Object obj);
}