Which way is correct to make my suspend coroutine ...
# coroutines
j
Which way is correct to make my suspend coroutine to be in same scope for calling coroutine scope?
g
You don’t need coroutineScope for this case, so no reason to use it
j
It's auto bind to calling coroutineScope right ?
g
function coroutineScope has completely different use case, when it has inside a few launched coroutine and they should have own scope and lifecycle but in this case there is no coroutines, only one suspend function suspendCoroutine which creates coroutine, but just a suspend function, so doesn’t require any scope
j
Many thanks. 😀