1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package examples
import kotlinx.coroutines.*
import kotlinx.coroutines.swing.*
import java.text.*
import java.util.*
import java.util.concurrent.*
import kotlin.coroutines.*
fun log(msg: String) = println("${SimpleDateFormat("yyyyMMdd-HHmmss.sss").format(Date())} [${Thread.currentThread().name}] $msg")
suspend fun makeRequest(): String {
log("Making request...")
return suspendCoroutine { c ->
ForkJoinPool.commonPool().execute {
c.resume("Result of the request")
}
}
}
fun display(result: String) {
log("Displaying result '$result'")
}
fun main(args: Array<String>) = runBlocking(Dispatchers.Swing) {
try {
// suspend while asynchronously making request
val result = makeRequest()
// example.display result in UI, here Swing dispatcher ensures that we always stay in event dispatch thread
display(result)
} catch (exception: Throwable) {
// process exception
}
}
|