Uses of Interface
software.amazon.awssdk.core.retry.conditions.RetryCondition
-
Packages that use RetryCondition Package Description software.amazon.awssdk.core.retry software.amazon.awssdk.core.retry.conditions -
-
Uses of RetryCondition in software.amazon.awssdk.core.retry
Methods in software.amazon.awssdk.core.retry that return RetryCondition Modifier and Type Method Description RetryConditionRetryPolicy. aggregateRetryCondition()Deprecated.Retrieve the retry condition that aggregates theRetryPolicy.Builder.retryCondition(RetryCondition),RetryPolicy.Builder.numRetries(Integer)andRetryPolicy.Builder.retryCapacityCondition(RetryCondition)configured on the builder.RetryConditionRetryPolicy.Builder. retryCapacityCondition()RetryConditionRetryPolicy.Builder. retryCondition()RetryConditionRetryPolicy. retryCondition()Deprecated.Retrieve theRetryPolicy.Builder.retryCondition(RetryCondition)configured on the builder.Methods in software.amazon.awssdk.core.retry with parameters of type RetryCondition Modifier and Type Method Description RetryPolicy.BuilderRetryPolicy.Builder. retryCapacityCondition(RetryCondition retryCapacityCondition)Configure theRetryConditionthat should be used to throttle the number of retries attempted by the SDK client as a whole.RetryPolicy.BuilderRetryPolicy.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 RetryCondition Modifier and Type Class Description classAndRetryConditionCompositeRetryConditionthat evaluates to true when all contained retry conditions evaluate to true.classMaxNumberOfRetriesConditionSimple retry condition that allows retries up to a certain max number of retries.classOrRetryConditionComposite retry condition that evaluates to true if any containing condition evaluates to true.classRetryOnClockSkewConditionARetryConditionthat will return true if the provided exception seems to be due to a clock skew between the client and service.classRetryOnExceptionsConditionRetry condition implementation that retries if the exception or the cause of the exception matches the classes defined.classRetryOnStatusCodeConditionRetry condition implementation that retries if the HTTP status code matches one of the provided status codes.classRetryOnThrottlingConditionARetryConditionthat will return true if the provided exception seems to be due to a throttling error from the service to the client.classTokenBucketRetryConditionARetryConditionthat limits the number of retries made by the SDK using a token bucket algorithm.Fields in software.amazon.awssdk.core.retry.conditions declared as RetryCondition Modifier and Type Field Description static RetryConditionSdkRetryCondition. DEFAULTstatic RetryConditionSdkRetryCondition. NONEMethods in software.amazon.awssdk.core.retry.conditions that return RetryCondition Modifier and Type Method Description static 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 RetryCondition Modifier and Type Method Description static AndRetryConditionAndRetryCondition. create(RetryCondition... conditions)static OrRetryConditionOrRetryCondition. create(RetryCondition... conditions)
-