Kotlin
coroutines
खोज…
परिचय
कॉटलिन के प्रायोगिक (अभी तक) कार्यान्वयन के उदाहरण
सरल कोरटाइन जो 1 सेकंड की देरी करता है लेकिन ब्लॉक नहीं करता है
(आधिकारिक डॉक्टर से )
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
}
परिणाम
Hello,
World!
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow