You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Doing task parallelism without risking unhandled exceptions is a pain and easy to do incorrectly. Some method to allow passing multiple task factories with proper exception handling would be valuable.
The text was updated successfully, but these errors were encountered:
Ideally, if you aren't going to await a task immediate, it should have a try catch internally to assure it can never throw an unhandled exception. Also, they really should all be awaited.
There is Parallel.Invoke in the .net libraries. Perhaps this could tie in with Unions for merging failure types?
Doing task parallelism without risking unhandled exceptions is a pain and easy to do incorrectly. Some method to allow passing multiple task factories with proper exception handling would be valuable.
The text was updated successfully, but these errors were encountered: