Package-level declarations
Types
Link copied to clipboard
class CancellableTimeout(timeoutMillis: Int, scope: CoroutineScope = CoroutineScope(Dispatchers.Default + Job()), onTimeout: suspend () -> Unit)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class WorkerPool(workerCount: Int = 10, scope: CoroutineScope = CoroutineScope(KmpDispatchers.IO + SupervisorJob()))
Creates a worker pool for running a set number of concurrent tasks at a time
Functions
Link copied to clipboard
fun <T> CoroutineScope.asyncOutcome(block: suspend CoroutineScope.() -> Outcome<T, Any>): Deferred<Outcome<T, Any>>
Creates a deferred result that does not cancel the parent upon failure but instead returns an Outcome. Best used with awaitOutcome.
Link copied to clipboard
Awaits a deferred and returns an outcome instead of throwing an error on cancellation.
Awaits a deferred and returns an outcome instead of throwing an error on cancellation. Best used with asyncOutcome.
Link copied to clipboard
Filters flow elements that don't match a given instance along with a provided predicate
Link copied to clipboard
Link copied to clipboard
Stops the flow when the time elapsed since collect start >= timeout Throws a FlowTimeoutCancellationException if throwOnTimeout == true
Link copied to clipboard