public static void Retry(Action action, int maxAttempts) { RetryUtil.Retry(action, maxAttempts); }
public static TResult Retry <TResult>(Func <TResult> func, int maxAttempts) { return(RetryUtil.Retry(func, maxAttempts)); }