Package-level declarations
Types
Link copied to clipboard
Defines the delay strategy for retrying an operation with the ability to use a custom delay provider with optional state.
Link copied to clipboard
Represents the delay strategy that determines next delay duration before retrying an operation, based on the current attempt and additional context.
Link copied to clipboard
data class RetryDelayStrategyContext(val lastThrowable: Throwable? = null, val lastResult: Any? = null)
Represents additional context to the RetryDelayStrategy.