Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/acfe1eae3bfa701b66d4d96de1813b1d to your computer and use it in GitHub Desktop.
Save javierguerrero/acfe1eae3bfa701b66d4d96de1813b1d to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter5_7.cs
var circuitBreakerPolicy = Policy
.Handle<SqlException>()
.CircuitBreaker(2, TimeSpan.FromMinutes(1));
circuitBreakerPolicy.Execute(() => AccesoBaseDeDatos());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment