Most voted "polly" questions
Polly is a resilience library. NET and transiently allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation and Fallback fluently and securely. Polly targets . NET 4.0, . NET 4.5 and . NET Standard 1.1.
Learn more…2 questions
Sort by count of
-
4
votes1
answer471
viewsHow does Polly’s Fallback work?
I’m trying to understand how it works Fallback by Polly, but I’m not getting the implementation right. From what I understand he executes another action if the first fails, but that’s not what is…
-
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 {…