✅ How to install a callback for an awaited item when using Task.WhenAll
Hello I am using Task.WhenAll on a List of Tasks. However if a task fails I want to immediately call another function on the task (for retrying it and handling other things). How can I do that?
I want a solution with good performance.
I want a solution with good performance.