<@U25U0KPFT> Do you need to report progress or do ...
# tornadofx
e
@carlw Do you need to report progress or do you just want to run some async code and then update the UI? If the latter, we have two constructs:
tableView.asyncItems { controller.longRunningFunctionThatReturnsItems() }
. If you want more control, you do
runAsync { controller.longRunningFunctionThatReturnsListOfSomething() } ui { it is List<Something> }
.