Hi guys,

i would like to ask you something.

I am getting data over TCP/IP, the processing of this data is done in one thread.

The next step would be the processing of this data like plot etc. but i would like not to
desturb the TCP thread.

My opportunities could be:

- To use the lock.read() method but in this way i would block the TCP thread.
- I could send the data with signal slot connection, but if i get an update every ms i would block the main thread.

- To send data data with UDP to 127.0.0.1

What do you think ? Any ideas ?

Regards