Is there any "shortcuts" for timers like this one ...
# tornadofx
a
Is there any "shortcuts" for timers like this one from ReactFX?
Copy code
FxTimer.runLater(
        Duration.ofMillis(2500),
        () -> doSomething());
I just need to run a task (once) after 2 sec