Skip to content

Instantly share code, notes, and snippets.

@hnabbasi
Last active July 11, 2018 22:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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