Real-Serious-Games / C-Sharp-Promise

Promises library for C# for management of asynchronous operations.
MIT License
1.2k stars 149 forks source link

Fixed Promise.All trying to still report progress or resolve the result promise when one of the given promises has already reported rejection. #80

Closed alonsohki closed 6 years ago

alonsohki commented 6 years ago

You can reproduce with:

Promise.All(pending_promise_that_will_report_progress, Promise.Rejected(new Exception()))