Skip to content

Commit

Permalink
API
Browse files Browse the repository at this point in the history
  • Loading branch information
ndkoval committed Aug 3, 2022
1 parent 248c34f commit 3088124
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions kotlinx-coroutines-core/api/kotlinx-coroutines-core.api
Expand Up @@ -39,11 +39,11 @@ public abstract interface class kotlinx/coroutines/CancellableContinuation : kot
public abstract fun isCancelled ()Z
public abstract fun isCompleted ()Z
public abstract fun resume (Ljava/lang/Object;Lkotlin/jvm/functions/Function1;)V
public abstract fun resume (Ljava/lang/Object;Lkotlinx/coroutines/OnCancellation;)V
public abstract fun resume (Ljava/lang/Object;Lkotlinx/coroutines/OnCancellationHandler;)V
public abstract fun resumeUndispatched (Lkotlinx/coroutines/CoroutineDispatcher;Ljava/lang/Object;)V
public abstract fun resumeUndispatchedWithException (Lkotlinx/coroutines/CoroutineDispatcher;Ljava/lang/Throwable;)V
public abstract fun tryResume (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
public abstract fun tryResume (Ljava/lang/Object;Ljava/lang/Object;Lkotlinx/coroutines/OnCancellation;)Ljava/lang/Object;
public abstract fun tryResume (Ljava/lang/Object;Ljava/lang/Object;Lkotlinx/coroutines/OnCancellationHandler;)Ljava/lang/Object;
public abstract fun tryResumeWithException (Ljava/lang/Throwable;)Ljava/lang/Object;
}

Expand All @@ -56,7 +56,7 @@ public final class kotlinx/coroutines/CancellableContinuation$DefaultImpls {
public class kotlinx/coroutines/CancellableContinuationImpl : kotlin/coroutines/jvm/internal/CoroutineStackFrame, kotlinx/coroutines/CancellableContinuation {
public fun <init> (Lkotlin/coroutines/Continuation;I)V
public final fun callCancelHandler (Lkotlinx/coroutines/CancelHandler;Ljava/lang/Throwable;)V
public final fun callOnCancellation (Lkotlinx/coroutines/OnCancellation;Ljava/lang/Object;Ljava/lang/Throwable;)V
public final fun callOnCancellation (Lkotlinx/coroutines/OnCancellationHandler;Ljava/lang/Object;Ljava/lang/Throwable;)V
public fun cancel (Ljava/lang/Throwable;)Z
public fun completeResume (Ljava/lang/Object;)V
public fun getCallerFrame ()Lkotlin/coroutines/jvm/internal/CoroutineStackFrame;
Expand All @@ -71,13 +71,13 @@ public class kotlinx/coroutines/CancellableContinuationImpl : kotlin/coroutines/
public fun isCompleted ()Z
protected fun nameString ()Ljava/lang/String;
public fun resume (Ljava/lang/Object;Lkotlin/jvm/functions/Function1;)V
public fun resume (Ljava/lang/Object;Lkotlinx/coroutines/OnCancellation;)V
public fun resume (Ljava/lang/Object;Lkotlinx/coroutines/OnCancellationHandler;)V
public fun resumeUndispatched (Lkotlinx/coroutines/CoroutineDispatcher;Ljava/lang/Object;)V
public fun resumeUndispatchedWithException (Lkotlinx/coroutines/CoroutineDispatcher;Ljava/lang/Throwable;)V
public fun resumeWith (Ljava/lang/Object;)V
public fun toString ()Ljava/lang/String;
public fun tryResume (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
public fun tryResume (Ljava/lang/Object;Ljava/lang/Object;Lkotlinx/coroutines/OnCancellation;)Ljava/lang/Object;
public fun tryResume (Ljava/lang/Object;Ljava/lang/Object;Lkotlinx/coroutines/OnCancellationHandler;)Ljava/lang/Object;
public fun tryResumeWithException (Ljava/lang/Throwable;)Ljava/lang/Object;
}

Expand Down Expand Up @@ -513,7 +513,7 @@ public final class kotlinx/coroutines/NonDisposableHandle : kotlinx/coroutines/C
public abstract interface annotation class kotlinx/coroutines/ObsoleteCoroutinesApi : java/lang/annotation/Annotation {
}

public abstract interface class kotlinx/coroutines/OnCancellation {
public abstract interface class kotlinx/coroutines/OnCancellationHandler {
public abstract fun invoke (Ljava/lang/Object;Ljava/lang/Throwable;Lkotlin/coroutines/CoroutineContext;)V
}

Expand Down

0 comments on commit 3088124

Please sign in to comment.