Created
May 11, 2017 15:07
-
-
Save AArnott/ee875ab886bfb3cd8228665b9538808f to your computer and use it in GitHub Desktop.
Trivial example of unbounded flooding of the threadpool queue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void WorkOnCollectionConcurrently(IEnumerable<T> data, Action<T> worker) | |
{ | |
foreach (T item in data) | |
{ | |
Task.Run(() => worker(item)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment