do you guys have any references you liked regarding concurrency with JavaFX projects? I can definitely draw parallels with web dev but for me, it's harder for me to grasp when my app is largely serverless
p
pike
04/10/2018, 3:45 AM
I'm not sure what you're saying.
Are you talking about async, or threading or coroutines ?
pike
04/10/2018, 3:46 AM
I'm probably wrong, but in the context of tornadoFX, you're probably just going to use runasync, unless you use the eventbus.
a
amanda.hinchman-dominguez
04/10/2018, 7:35 AM
async specifically. OMG how did I forget to answer back - I mean, is there a use for threading or coroutines for a serverless application?
amanda.hinchman-dominguez
04/10/2018, 7:35 AM
I'm talking about studying event orders in a UI decided by JavaFX
k
kastork
04/10/2018, 5:56 PM
There's definitely a use. My desktop project has an entire job queuing system that runs background jobs (in parallel).