Package-level declarations

Types

Link copied to clipboard
interface Abortable
Link copied to clipboard
Link copied to clipboard

The AbortController interface represents a controller object that allows you to abort one or more Web requests as and when desired.

Link copied to clipboard

The AbortSignal interface represents a signal object that allows you to communicate with an asynchronous operation (such as a fetch request) and abort it if required via an AbortController object.

Properties

Link copied to clipboard

Functions

Link copied to clipboard
suspend fun <R> Abortable?.coroutineScope(block: suspend CoroutineScope.() -> R): R
Link copied to clipboard
Link copied to clipboard
fun <T : Abortable> unsafeAbortable(options: T?, signal: AbortSignal): T