I have a specific problem that i am sure can be solvable using TPL dataflow. I am just new to this, so need your help expediting my understanding. My code is like this currently:
where Process1, Process2, Process3 each are Task. Objects are passed from one block to another block with blocking collection. I would like to do this:
I read about TransformBlock, ActionBlock and BatchBlock..Can you help me how to use these classes to achieve above design.
You didn't provide any details on what your Process2 and Process3 blocks do with the input data so I made an assumption that each of them makes some unique transformation with the original objects so that the output list of objects contains a joined results of both processes.