Skip to content

Commit

Permalink
App-vNext#944- Added to readme explaining waitand/retryforever is not…
Browse files Browse the repository at this point in the history
… actually forever
  • Loading branch information
james-2001 committed Jan 6, 2023
1 parent ed8ab59 commit 050decf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ Policy
});
```

`RetryForever` does not actually retry forever; it will retry up to `int.MaxValue` (2147483647) times. Depending on what is done in the policy delegate this may take an exceedingly long time, but the policy will eventually hit `int.MaxValue` retries, get the last exception and stop retrying.

#### Wait and retry

```csharp
Expand Down Expand Up @@ -323,6 +325,8 @@ Policy
});
```

Similarly to `RetryForever`, `WaitAndRetryForever` only actually retries `int.MaxValue` times.

If all retries fail, a retry policy rethrows the final exception back to the calling code.

For more depth see also: [Retry policy documentation on wiki](https://github.com/App-vNext/Polly/wiki/Retry).
Expand Down

0 comments on commit 050decf

Please sign in to comment.