Skip to content

Instantly share code, notes, and snippets.

@hnabbasi
Last active July 11, 2018 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hnabbasi/07ba8244538579167cd0af378c2dbb5d to your computer and use it in GitHub Desktop.
Save hnabbasi/07ba8244538579167cd0af378c2dbb5d to your computer and use it in GitHub Desktop.
internal async Task<T> WaitAndRetryInner<T>(Func<Task<T>> func, Func<int, TimeSpan> sleepDurationProvider,
int retryCount,
Func<Exception, TimeSpan, Task> onRetryAsync)
{
return await Policy
.Handle<Exception>()
.WaitAndRetryAsync(retryCount, sleepDurationProvider, onRetryAsync)
.ExecuteAsync<T>(func);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment