Data Propagation in TPL Dataflow Pipeline with Batchblock.Triggerbatch()
问题 In my Producer-Consumer scenario, I have multiple consumers, and each of the consumers send an action to external hardware, which may take some time. My Pipeline looks somewhat like this: BatchBlock --> TransformBlock --> BufferBlock --> (Several) ActionBlocks I have assigned BoundedCapacity of my ActionBlocks to 1. What I want in theory is, I want to trigger the Batchblock to send a group of items to the Transformblock only when one of my Actionblocks are available for operation. Till then