Ifvwm
07/11/2019, 11:39 AMtseisel
07/11/2019, 1:23 PMsuspend
keyword. In compiled Kotlin code, each suspend fun
is converted this way :
suspend fun <T, R> foo(input: T): R
becomes
<T, R> Object foo(T input, Continuation<? super R> cont)
in Java.