1 dépôt
Functional wrappers that intercept and modify operation flow to apply resilience logic.
Distinct from Execution Policies: Distinct from Execution Policies: focuses on the decorator-based interception mechanism rather than the policy configuration.
Explore 1 awesome GitHub repository matching development tools & productivity · Execution Decorators. Refine with filters or upvote what's useful.
Polly is a resilience and transient-fault-handling library for .NET applications. It provides a framework for defining and executing stability patterns that manage failures and resource exhaustion during operation execution. The library enables developers to compose complex resilience strategies through a fluent builder pattern, wrapping target operations in functional decorators. These policies intercept execution flow to apply automated recovery mechanisms, such as retries for temporary errors or circuit breakers that isolate unstable components by blocking requests. The framework supports
Wraps target operations in functional decorators to intercept and modify execution flow.