Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created March 20, 2018 01:51
Show Gist options
  • Save aramkoukia/00481f97ba815bd48b67e7d8d45ce143 to your computer and use it in GitHub Desktop.
Save aramkoukia/00481f97ba815bd48b67e7d8d45ce143 to your computer and use it in GitHub Desktop.
Policy
.Handle<Exception>()
.WaitAndRetry(new[]
{
TimeSpan.FromSeconds(1),
TimeSpan.FromSeconds(2),
TimeSpan.FromSeconds(3)
}, (exception, timeSpan, context) => {
YourFunction();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment