We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add notices for Polly v8 - Add notices to every page linking to Polly v8 documentation. - Fix various Markdown lint warnings. - Update README links to point to the v7.2.4 tag.
optimistic timeout examples were outdated prev. v.7
Add code languages to coding sections
Clarify wording about pessimistic cancellation
Added more clarity on timeout and retry ordering
Clarify use optimistic timeout with HttpClient
Use OperationKey, not ExecutionKey
Clarified use of CancellationToken
Clarify not to use `Thread.Sleep(...)` to test async policies
(wording refinement)
Emphasized use of ThrowIfCancellationRequested() as the standard approach
Clarify async continuations
Prevents compilation error when using provided sample
Fix typos
Update Timeout doco - pessimistic synchronous executions Update Timeout doco for pessimistic synchronous executions, to discuss thread-pool startvation. Other doco cleanups.
Clarify optimistic timeout
Added: Combining timeout with retry policies
fix grammar
Clarify timeout examples
IsCanceled in the comment
IsCancelled does not exist on System.Task, it is IsCanceled
Clarify pessimistic timeout mode
Realistic value in timeout example
Add TimeoutStrategy.Optimistic code examples Add TimeoutStrategy.Optimistic code examples
Clarified when the `TimeoutRejectedException` is thrown.
Additional discussion around pessimistic timeout
Remove return statement Remove extra return statement added by community. It would be correct for Policy.TimeoutAsync(...), but is not correct for the Policy.Timeout(...) example given.
Added missing return statement
(minor clarify code example)