Kotlin
Coroutinen
Suche…
Einführung
Beispiele für Kotlins experimentelle (noch) Implementierung von Coroutinen
Einfache Coroutine, deren Verzögerung 1 Sekunde beträgt, aber nicht blockiert
(aus offiziellem Dokument )
fun main(args: Array<String>) {
launch(CommonPool) { // create new coroutine in common thread pool
delay(1000L) // non-blocking delay for 1 second (default time unit is ms)
println("World!") // print after delay
}
println("Hello,") // main function continues while coroutine is delayed
Thread.sleep(2000L) // block main thread for 2 seconds to keep JVM alive
}
Ergebnis
Hello,
World!
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow