How is concurrency handled with TornadoFX? There d...
# tornadofx
n
How is concurrency handled with TornadoFX? There doesn't appear to be anything about concurrency in the TornadoFX Guide ( https://edvin.gitbooks.io/tornadofx-guide ). The TornadoFX Wiki has a page on concurrency ( https://github.com/edvin/tornadofx/wiki/Async-Task-Execution ) but is it still relevant?
c
There is a git book which is more up to date. https://edvin.gitbooks.io/tornadofx-guide/part1/3.%20Components.html
👍 1
n
Had to dig into the Components page to find the Long Running Tasks section which covers what I am looking for, however the section doesn't cover Kotlin Coroutines. Have a Coroutine (a suspend function that performs a long running task) that I am trying to integrate using TornadoFX. There doesn't seem to be a straightforward way to do it.