Can I add my custom element to `coroutineContext` ...
# coroutines
v
Can I add my custom element to
coroutineContext
like
coroutineContext[Job]
that propagates to all children; if yes, are there any pointers for doing the same?
o
I'm pretty sure that's the default behaviour, see `launch`:
The coroutine context is inherited from a CoroutineScope. Additional context elements can be specified with context argument.