Skip to content

Instantly share code, notes, and snippets.

@mwadams
Created May 22, 2013 21:44
Show Gist options
  • Save mwadams/5631180 to your computer and use it in GitHub Desktop.
Save mwadams/5631180 to your computer and use it in GitHub Desktop.
A retry policy example
public class AnyException : IRetryPolicy
{
public bool CanRetry(Exception exception)
{
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment