Circuit breaker design pattern: Difference between revisions

Content deleted Content added
LL23896 (talk | contribs)
Added missing C# retry pattern example with Polly with relevant external link
Line 11:
Generally Circuit Breaker can be used to check the availability of an external service. An external service can be a database server or a web service used by the application.
 
[[Circuit breaker]] detects failures and prevents the application from trying to perform the action that is doomed to fail (until it's safe to retry ).
 
==Implementation==