Last active
May 11, 2017 15:12
-
-
Save AArnott/d0325f6c4e98a5e3107cd5626ecc764d to your computer and use it in GitHub Desktop.
Simple example of highly concurrent work that is tracked
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
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