Interface | Description |
---|---|
Retry.RetrySignal |
State used in
Flux.retryWhen(Retry) and Mono.retryWhen(Retry) ,
providing the Throwable that caused the source to fail as well as counters keeping track of retries. |
Class | Description |
---|---|
Retry |
Base abstract class for a strategy to decide when to retry given a companion
Flux of Retry.RetrySignal ,
for use with Flux.retryWhen(Retry) and Mono.retryWhen(Retry) . |
RetryBackoffSpec |
A
Retry strategy based on exponential backoffs, with configurable features. |
RetrySpec |
A simple count-based
Retry strategy with configurable features. |