Uses of Interface
software.amazon.awssdk.core.retry.conditions.RetryCondition
Packages that use RetryCondition
-
Uses of RetryCondition in software.amazon.awssdk.core.retry
Methods in software.amazon.awssdk.core.retry that return RetryConditionModifier and TypeMethodDescriptionRetryPolicy.aggregateRetryCondition()Deprecated.Retrieve the retry condition that aggregates theRetryPolicy.Builder.retryCondition(RetryCondition),RetryPolicy.Builder.numRetries(Integer)andRetryPolicy.Builder.retryCapacityCondition(RetryCondition)configured on the builder.RetryPolicy.Builder.retryCapacityCondition()RetryPolicy.Builder.retryCondition()RetryPolicy.retryCondition()Deprecated.Retrieve theRetryPolicy.Builder.retryCondition(RetryCondition)configured on the builder.Methods in software.amazon.awssdk.core.retry with parameters of type RetryConditionModifier and TypeMethodDescriptionRetryPolicy.Builder.retryCapacityCondition(RetryCondition retryCapacityCondition) Configure theRetryConditionthat should be used to throttle the number of retries attempted by the SDK client as a whole.RetryPolicy.Builder.retryCondition(RetryCondition retryCondition) Configure the condition under which the request should be retried. -
Uses of RetryCondition in software.amazon.awssdk.core.retry.conditions
Classes in software.amazon.awssdk.core.retry.conditions that implement RetryConditionModifier and TypeClassDescriptionfinal classCompositeRetryConditionthat evaluates to true when all contained retry conditions evaluate to true.final classSimple retry condition that allows retries up to a certain max number of retries.final classComposite retry condition that evaluates to true if any containing condition evaluates to true.final classARetryConditionthat will return true if the provided exception seems to be due to a clock skew between the client and service.final classRetry condition implementation that retries if the exception or the cause of the exception matches the classes defined.final classRetry condition implementation that retries if the HTTP status code matches one of the provided status codes.final classARetryConditionthat will return true if the provided exception seems to be due to a throttling error from the service to the client.classARetryConditionthat limits the number of retries made by the SDK using a token bucket algorithm.Fields in software.amazon.awssdk.core.retry.conditions declared as RetryConditionModifier and TypeFieldDescriptionstatic final RetryConditionSdkRetryCondition.DEFAULTstatic final RetryConditionSdkRetryCondition.NONEMethods in software.amazon.awssdk.core.retry.conditions that return RetryConditionModifier and TypeMethodDescriptionstatic RetryConditionRetryCondition.defaultRetryCondition()Deprecated.static RetryConditionRetryCondition.none()Deprecated.A retry condition that will NEVER allow retries.Methods in software.amazon.awssdk.core.retry.conditions with parameters of type RetryConditionModifier and TypeMethodDescriptionstatic AndRetryConditionAndRetryCondition.create(RetryCondition... conditions) static OrRetryConditionOrRetryCondition.create(RetryCondition... conditions)