Does anything really disasterous happen if you cal...
# announcements
e
Does anything really disasterous happen if you call
runBlocking
from a coroutine scope or does it just take over the thread while executing?
d
It acts like any other blocking function, it will block the thread until it's done.
It doesn't interact with the existing coroutine context or scope
e
Thank you!