Is there a standard agreed idiom for exposing susp...
# coroutines
j
Is there a standard agreed idiom for exposing suspending functions to Java. For high level entry points specifically.
Copy code
suspend fun start() = ...
fun startAsync() = future { start() }
fun startBlocking() = runBlocking { start() }
or similar?