Should we be moving away from `runBlocking` in the...
# coroutines
b
Should we be moving away from
runBlocking
in the JVM context in general? or just in tests? I currently provide some coroutine samples that bridge non-suspending API via
runBlocking
Copy code
fun foo() = runBlocking { ... }