Call Kotlin suspend function in Java class
Assume we have the following suspend function:
suspend fun doSomething(): List { ... }
If I want to call this function in one of my existing Java classes (which I'm not able to convert to Kotlin for now) and get its return value I have to provide a Continuation