StandardRetryStrategy
open class StandardRetryStrategy(val config: StandardRetryStrategy.Config = Config.default()) : RetryStrategy
Implements a retry strategy utilizing backoff delayer and a token bucket for rate limiting and circuit breaking. Note that the backoff delayer and token bucket work independently of each other. Either can delay retries (and the token bucket can delay the initial try). The delayer is called first so that the token bucket can refill as appropriate.
StandardRetryStrategy is the recommended retry mode for the majority of use cases.
Parameters
config
The options that control the functionality of this strategy.