I have an JavaFX standalone application in a server PC doing the following:
Take data from some serial devices (rs232) each 200ms and save that data in a postgresql database. That size of the data is up to 2500 objects with 15 fields (2500 rows with 15 columns in database)
Also, i have others Javafx applications (clients) in the Local Area Network that take that data from the server database each 500 ms, and display them in a JavaFX GUI.
My question is: Can i use Open Dolphin to keep all those objects synchronized in all the clients? (taking in account the sampling time requierement and the amount of data).
I have been reading about OpenDolphin, but the examples that i saw are with Strings synchronization, without time pressure.
PD: If not, which one technique would be?
Thanks