pub trait RetryStrategy:
Send
+ Sync
+ Debug {
// Required methods
fn should_attempt_initial_request(
&self,
runtime_components: &RuntimeComponents,
cfg: &ConfigBag,
) -> Result<ShouldAttempt, BoxError>;
fn should_attempt_retry(
&self,
context: &InterceptorContext,
runtime_components: &RuntimeComponents,
cfg: &ConfigBag,
) -> Result<ShouldAttempt, BoxError>;
}
Available on crate feature
client
only.Expand description
Decider for whether or not to attempt a request, and when.
The orchestrator consults the retry strategy every time before making a request.
This includes the initial request, and any retry attempts thereafter. The
orchestrator will retry indefinitely (until success) if the retry strategy
always returns ShouldAttempt::Yes
from should_attempt_retry
.
Required Methods§
Sourcefn should_attempt_initial_request(
&self,
runtime_components: &RuntimeComponents,
cfg: &ConfigBag,
) -> Result<ShouldAttempt, BoxError>
fn should_attempt_initial_request( &self, runtime_components: &RuntimeComponents, cfg: &ConfigBag, ) -> Result<ShouldAttempt, BoxError>
Decides if the initial attempt should be made.
Sourcefn should_attempt_retry(
&self,
context: &InterceptorContext,
runtime_components: &RuntimeComponents,
cfg: &ConfigBag,
) -> Result<ShouldAttempt, BoxError>
fn should_attempt_retry( &self, context: &InterceptorContext, runtime_components: &RuntimeComponents, cfg: &ConfigBag, ) -> Result<ShouldAttempt, BoxError>
Decides if a retry should be done.
The previous attempt’s output or error are provided in the
InterceptorContext
when this is called.
ShouldAttempt::YesAfterDelay
can be used to add a backoff time.