Exemplo n.º 1
0
 public static void Retry(Action action, int maxAttempts)
 {
     RetryUtil.Retry(action, maxAttempts);
 }
Exemplo n.º 2
0
 public static TResult Retry <TResult>(Func <TResult> func, int maxAttempts)
 {
     return(RetryUtil.Retry(func, maxAttempts));
 }