Created
December 7, 2018 11:42
-
-
Save mikhailshilkov/b6ecec4c294c2a35bbe4800941687749 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var emailSendingTasks = | |
recepients | |
.Select(to => context.CallActivityAsync<bool>("SendEmail", to)) | |
.ToArray(); | |
var results = await Task.WhenAll(emailSendingTasks); | |
if (results.All(r => r)) { /* ... */ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment