[Solved] TPL Dataflow uses old data instead of the newest
TPL Dataflow will process all items in order; that’s what it’s made to do. You can try to do a most-recent kind of approach by using a BroadcastBlock, but since that block is linked to another block, you’ll probably end up with one in process, one waiting to be processed, and the third one being … Read more