Hi all
What is the best way to send a series of data (float array) from a server to a client continuously through Java socket? For example, I have a server that produces float data every 1ms, and I would like to send this data to a client. My plan is to put this process in a thread (server side) and send it to the client continuously. Is it possible to achieve this through Java socket? or should I write the data into a file first before sending it to the client?
Thanks!