Skip to content

Instantly share code, notes, and snippets.

@AArnott
Created May 11, 2017 15:07
Show Gist options
  • Save AArnott/ee875ab886bfb3cd8228665b9538808f to your computer and use it in GitHub Desktop.
Save AArnott/ee875ab886bfb3cd8228665b9538808f to your computer and use it in GitHub Desktop.
Trivial example of unbounded flooding of the threadpool queue
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