Calling specific task between all tasks

Hi there,

There are 5 tasks in total in the structure I created. One of these tasks is senderTask and will take part in sending the current data. After each task is processed, senderTask will send the package created in that task. You can examine the structure I want to create below. I do not know how to make this structure, unfortunately, I ask for your help.

Kind regards.

Without having more information about the purpose of the application it’s hard to tell.
But using a task for transferring messages from a task to the next task seems not appropriate. Why not transferring the data directly ?

In general you can use idle hook to do what you want if there are spare time slots between tasks, but I’d recommend using queue or direct to task notification.

If the processing is serial, why do you need multiple tasks? Why can’t it be done in the same task?