Sets the initial backoff for the retry operation. The initial backoff is the amount of time to wait if the first try fails.
(mut self, initial_backoff: Duration)
| 115 | /// The initial backoff is the amount of time to wait if the first try |
| 116 | /// fails. |
| 117 | pub fn initial_backoff(mut self, initial_backoff: Duration) -> Self { |
| 118 | self.initial_backoff = initial_backoff; |
| 119 | self |
| 120 | } |
| 121 | |
| 122 | /// Clamps the maximum backoff for the retry operation. |
| 123 | /// |
no outgoing calls