what is the coroutines equivalent of caching the c...
# coroutines
p
what is the coroutines equivalent of caching the current context to continue there at a later point? something like
Scheduler.trampoline()
l
val context = coroutineContext
in Kotlin 1.2.50
đź‘Ť 1
c
doesn’t Unconfined work for you?
p
That works to launch one on the current thread, not on the thread you were on a previous scope. It doesn't attach to a thread on creation but on launch.