Package-level declarations

Types

Link copied to clipboard
open class CoroutineScopePool(parentJobBuilder: () -> Job, commonExceptionHandler: CoroutineExceptionHandler, scopeDescriptors: List<CoroutineScopeDescriptor>, scopeComposer: (CoroutineScopeDescriptor, Job, CoroutineDispatcher) -> CoroutineScope = { descriptor, job, dispatcher -> CoroutineScope( descriptor + job + dispatcher + commonExceptionHandler ) }) : Closeable

Provides a handy functionality for coroutine scopes management.

Link copied to clipboard