Is it possible to have any dataflow block type send multiple intermediate results as a result of a single input?
问题 Is it possible to get TransformManyBlock s to send intermediate results as they are created to the next step instead if waiting for the entire IEnumerable<T> to be filled? All testing I've done shows that TransformManyBlock only sends a result to the next block when it is finished; the next block then reads those items one at a time. It seems like basic functionality but I can't find any examples of this anywhere. The use case is processing chunks of a file as they are read. In my case there