A
alexia
Hello all,
I need to write loggerReader which receives strings from embedded
device using UDP socket.
The embedded device sends og strings which should be written to a file
and printed on textbox.
The device can send log strings in bursts.
This requiers my logger to be very fast.
The logger has the following design:
1. UDP thread which receives the log strings from the device.
2. worker thread which get the log strings from the UDP thread, write
to the file and print them on the text box.
The mechanism I used for the IPC is socket. The problem is that I saw
that using socket as IPC is not good since some log strings aren't
written to the file (socket is not fast enough ?).
I tried to use the .NET PipeQ object. The problem is that I need to
install this on the PC.
Are there any other async methods that are fast enough?
Thank you for your help.
I need to write loggerReader which receives strings from embedded
device using UDP socket.
The embedded device sends og strings which should be written to a file
and printed on textbox.
The device can send log strings in bursts.
This requiers my logger to be very fast.
The logger has the following design:
1. UDP thread which receives the log strings from the device.
2. worker thread which get the log strings from the UDP thread, write
to the file and print them on the text box.
The mechanism I used for the IPC is socket. The problem is that I saw
that using socket as IPC is not good since some log strings aren't
written to the file (socket is not fast enough ?).
I tried to use the .NET PipeQ object. The problem is that I need to
install this on the PC.
Are there any other async methods that are fast enough?
Thank you for your help.