, Kotlin 1.1, EAP ( ). , API , , . , , , Kotlin 1.1.
- , IDE Kotlin 1.1 EAP (M04 ), .
- , , .
private val executor = Executors.newSingleThreadScheduledExecutor {
Thread(it, "sleep-thread").apply { isDaemon = true }
}
suspend fun sleep(millis: Long): Unit = suspendCoroutine { c ->
executor.schedule({ c.resume(Unit) }, millis, TimeUnit.MILLISECONDS)
}
, . .NET, - - ( , , ), , / , , . sleep , , , sleep, . .
Kotlin coroutines, #coroutines kotlinlang. . .