Is the use of Platform runlater allowed? #14
Answered
by
Troublor
DelusionArun
asked this question in
Q&A
-
A few of my implementations use Platform.runLater. While checking, I looked at oracle doc and realized that runLater runs at some unspecified time in the future, which indicates that execution could be non-deterministic. So, are we allowed to use Platform runlater for the scope of this project or not? |
Beta Was this translation helpful? Give feedback.
Answered by
Troublor
Nov 21, 2021
Replies: 1 comment 1 reply
-
Where do you use the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
DelusionArun
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where do you use the
Platform.runLater()
? It is fine if you just use it to update the GUI.