Skip to content

Instantly share code, notes, and snippets.

@hnabbasi
Last active July 26, 2018 16:32
Embed
What would you like to do?
Polly MVVM
public interface INetworkService
{
Task<T> Retry<T>(Func<Task<T>> func, int retryCount, Func<Exception, int, Task> onRetry);
Task<T> WaitAndRetry<T>(Func<Task<T>> func, Func<int, TimeSpan> sleepDurationProvider, int retryCount,
Func<Exception, TimeSpan, Task> onRetryAsync);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment