bdawg.io
12/01/2017, 11:53 PMrunBlocking
? (This is what I suspect since the non-coroutine variant would be blocking normally)
ie
interface A {
@Throws(Throwable::class)
fun foo()
}
class RealA : A {
override fun foo() = runBlocking {
launch { ... }.join()
launch { ... }.join()
}
}