Unable to understand this
# coroutines
c
Unable to understand this
j
Whats described below is correct
o
coroutineScope
blocks until everything inside finishes, like a
while
or
for
loop would: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/coroutine-scope.html
👍 1
I don't think that behavior relies on
runBlocking
, but I could be wrong
g
coroutineScope
blocks
Suspends, not blocks
o
ah, yes
g
Yes, Kenzie is correct, this behavior has nothing to do with runBlocking and context, only to coroutineScope function semantics
👍 1