DEV Community

Discussion on: Async/Await easy retry in c#

Collapse
 
katnel20 profile image
Katie Nelson

How do you know that your awaited task failed? Mine either throw an exception or they time out.
How does this retry library handle both cases?

Collapse
 
alialp profile image
Ali Alp

Why do you separate time out from exception? which case are you talking about? In my world time out is an exception as well and the Easy-Retry is running the awaited task in a try catch block Source Code.