We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 880c7d6 commit a23b55aCopy full SHA for a23b55a
README.md
@@ -5,14 +5,14 @@ There are two strategies
5
- exponential - Exponential backoff is a strategy in which you increase the delays between retries
6
7
```swift
8
- /// constant delay between retries
+ /// Constant delay between retries
9
case constant(
10
retry : UInt = 5,
11
duration: DispatchTimeInterval = .seconds(2),
12
timeout: DispatchTimeInterval = .seconds(Int.max)
13
)
14
15
- /// Exponential backoff is a strategy in which you increase the delays between retries.
+ /// Exponential backoff is a strategy in which you increase the delays between retries
16
case exponential(
17
retry : UInt = 3,
18
multiplier: Double = 2.0, // The power exponent
0 commit comments