rrrum wrote on Wednesday, July 13, 2016:
Hello,
I would like to ask for a opinion, it is a design issue and I am not able to find among many different mechanisms the right one for my task:
-
Let’s focus on 3 tasks, A, B1, B2
-
Task A is implemented as follows: waits on its “command queue” and there is also timeout set to allow it to run periodically to do some work if no commands are present.
-
Task A is controlling also B1 and B2, at some point task A writes to receive queues of B1 and B2 which unblock and B1 or B2 or both run
-
Each task B1 and B2 should set some flag, showing task is running
-
It can take undefined amount of time to complete B1 or B2, when completed, each task resets its “running flag”
-
Now task A, at some point in the “periodic” run section, should check if tasks B1 and B2 completed their job (running flag not set), if both are finished it should perform some action, otherwise is should just continue executing periodic stuff.
So I wonder if task notification mechanism or event groups can be used for this purpose or what is the most suitable/efficient mechanism for this design problem.
Thank you
rum
