Skip to content

Instantly share code, notes, and snippets.

@AArnott
Last active May 11, 2017 15:12
Show Gist options
  • Save AArnott/d0325f6c4e98a5e3107cd5626ecc764d to your computer and use it in GitHub Desktop.
Save AArnott/d0325f6c4e98a5e3107cd5626ecc764d to your computer and use it in GitHub Desktop.
Simple example of highly concurrent work that is tracked
Task PerformConcurrentWorkAsync<T>(IEnumerable<T> data, Action<T> worker)
{
return Task.WhenAll(data.Select(v => Task.Run(() => worker(v))));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment