RetryableFilter

Filter that retries message processing for recoverable errors.

This filter is ordered to run before other processing filters and will retry failed operations according to the specified retry specification.

Parameters

retrySpec

The retry specification to use (default: DEFAULT_RETRY_SPEC)

Constructors

Link copied to clipboard
constructor(retrySpec: Retry = DEFAULT_RETRY_SPEC)

Functions

Link copied to clipboard
open override fun filter(exchange: T, next: FilterChain<T>): Mono<Void>

Applies retry logic to the filter chain execution.