Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created December 7, 2018 11:42
Show Gist options
  • Save mikhailshilkov/b6ecec4c294c2a35bbe4800941687749 to your computer and use it in GitHub Desktop.
Save mikhailshilkov/b6ecec4c294c2a35bbe4800941687749 to your computer and use it in GitHub Desktop.
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