I’m trying to call Kotlin function from Java 7. I’m using coroutines and this called function is suspending, for example: I was using coroutines in version 0.25.3 and I could emulate simple Java callback style by passing Continuation<U> instance as an argument to suspending function, e.g. However, after updating to fully stable 1.0.1 release, I think it’s no longer possible.