-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Client thread #4
Comments
Just to clarify: |
At the moment the client thread is handling the saving of the measurements by writing it to a file if en_log is set. |
I'm pretty sure handlerThread is currently the one writing mes. to a file if en_log.
I don't see that there would be any interactivity between the different clients that would require a singleton to handle all clients. I would even say they are completly independent as they only meet where their data gets accumulated and maybe in some common user inputs e.g. the record button. So as they only have common input/output interfaces and as the processing merging handler feels like a huge bottleneck, i would maybe suggest to inflate the clientThread to include all the evaluating logic up to the I/O interfaces. Which would basically scrap the handlerThread. |
Also i like the word "datalogging" |
You are right about the handler writing to the files, my bad. |
Opens from the server method.
Responsible for reading queues and sending to the cell and reading incoming messages from the cell and logging them.
The text was updated successfully, but these errors were encountered: