I'm throwing hundreds of activities and as I'm using a WhenAll I get the results after all activities have completed. But I was wondering if it is possible to get partial results when calling
durableClient.GetStatusAsync(instanceId).Output;
The code to wait for all activities:
await Task.WhenAll(activitiesTasks);
var resultsFromTasks = activitiesTasks.Select(x => x.Result);
return resultsFromTasks;