https://kotlinlang.org logo
#coroutines
Title
# coroutines
f

Florian

11/15/2020, 9:32 AM
if I use
runBlockingTest
, will it execute coroutines launched within it sequentially? (as if I called
join
on them)
a

Archie

11/15/2020, 12:22 PM
yes
g

gildor

11/15/2020, 12:31 PM
Only if test dispatcher is used (so something like launch(IO) will not work)
f

Florian

11/15/2020, 6:48 PM
I didn't know that
I'm not passing a dispatcher at all since they call Room functions
3 Views