DEV Community

Discussion on: Scheduling tons of orchestrator functions concurrently in C#

Collapse
 
rahuldj profile image
rahuldj

You can also use ActionBlock (TPL dataflow) to orchestrate throttled consumer. It provides maxDegreeOfParallelism which works similar to max Concurrency. It would be more concise and has additional features that are useful in more complex scenarios (e.g. Chaining ActionBlocks to create a workflow.)