``` private suspend fun doSomething() { //calls ...
# coroutines
e
Copy code
private suspend fun doSomething() {
  //calls await methods, jumps on and off UI thread
}

@FXML fun handler(clickEvent: Event){
  background { doSomething(); }
}