Package | Description |
---|---|
reactor.core.publisher | |
reactor.util.retry |
Modifier and Type | Method and Description |
---|---|
Flux<T> |
Flux.retryWhen(Retry retrySpec)
|
Mono<T> |
Mono.retryWhen(Retry retrySpec)
|
Modifier and Type | Class and Description |
---|---|
class |
RetryBackoffSpec
A
Retry strategy based on exponential backoffs, with configurable features. |
class |
RetrySpec
A simple count-based
Retry strategy with configurable features. |
Modifier and Type | Method and Description |
---|---|
static Retry |
Retry.from(Function<Flux<Retry.RetrySignal>,? extends Publisher<?>> function)
|
static Retry |
Retry.withThrowable(Function<Flux<Throwable>,? extends Publisher<?>> function)
|