CoroutineName

data class CoroutineName(val name: String) : AbstractCoroutineContextElement

User-specified name of coroutine. This name is used in debugging mode. See newCoroutineContext for the description of coroutine debugging facilities.

Constructors

Link copied to clipboard
fun CoroutineName(name: String)

Types

Link copied to clipboard
object Key : CoroutineContext.Key<CoroutineName>

Key for CoroutineName instance in the coroutine context.

Functions

Link copied to clipboard
open override fun toString(): String

Returns a string representation of the object.

Properties

Link copied to clipboard
val name: String

User-defined coroutine name.

Sources

Link copied to clipboard