Kotlin coroutines: Dispatchers.Main context for RoboVM applications
07 May 2021 | kotlin coroutinesAndroid has kotlinx-coroutines-android Dispatcher.Main
that coroutine execution on main/ui
thread.
It allows writing an effective suspend logic on main thread as described on the usage page:
fun setup(hello: Text, fab: Circle) {
GlobalScope.launch(Dispatchers.Main) { // launch coroutine in the main thread
for (i in 10 downTo 1) { // countdown from 10 to 1
hello.text = "Countdown $i ..." // update text
delay(500) // wait half a second
}
hello.text = "Done!"
}
}
Overview
To make Dispatchers.Main
available to kotlinx
following steps to be done: