Most voted "circuitbreaking" questions
Circuit Breaker is a design standard (Pattern design) in modern software development. Circuit Breaker is used to detect faults and encapsulates the logic of preventing a failure from recurring constantly (during maintenance, temporary external system failure or unexpected system difficulties).
Learn more…2 questions
Sort by count of
-
7
votes1
answer86
viewsWhat is a Circuitbreaker?
I’ve seen some definitions about Circuitbreaker, but I still don’t understand how to use it and I have my doubts. What is the best case scenario to be applied? What should be aborted to be fully…
-
0
votes1
answer43
viewsHow can I capture Exception from Circuitbreaker (Polly) and generate a log?
I’m trying to capture through Action onBreak, but apparently it never launches Exception on screen. using Polly; using System; using System.Collections.Generic; namespace CircuitBreakingPolly {…