У меня есть следующий код:
Код: Выделить всё
launch(UI) {
val result = async(CommonPool) {
delay(30000)
executeMethodAfterDelay()
}
result.await()
}
Подробнее здесь: https://stackoverflow.com/questions/517 ... with-delay
Код: Выделить всё
launch(UI) {
val result = async(CommonPool) {
delay(30000)
executeMethodAfterDelay()
}
result.await()
}