<@U0F3291QE> I’ll explain it in example: I have bu...
# tornadofx
c
@edvin I’ll explain it in example: I have button, on press I’m asking server for data, let’s say it takes 5s to respond. Result should be shown in view, so I use this construction:
Copy code
runAsync {
    ask_server
} ui {
    show_result
}
but if I press button more than once - it would send requests for each press, when I need only 1 and never more