Client decorator that handles failures and retries requests.See: Description
| Interface | Description |
|---|---|
| Backoff |
Controls back off between attempts in a single retry operation.
|
| RetryStrategy |
Determines whether a failed request should be retried.
|
| RetryStrategyWithContent<T extends Response> |
Determines whether a failed request should be retried using the content of a
Response. |
| Class | Description |
|---|---|
| AbstractBackoff |
A skeletal
Backoff implementation. |
| BackoffWrapper |
Wraps an existing
Backoff. |
| RetryingClient<I extends Request,O extends Response> |
A
Client decorator that handles failures of remote invocation and retries requests. |
| RetryingClientBuilder<O extends Response> |
Builds a new
RetryingClient or its decorator function. |
| RetryingHttpClient |
An
HttpClient decorator that handles failures of an invocation and retries HTTP requests. |
| RetryingHttpClientBuilder |
Builds a new
RetryingHttpClient or its decorator function. |
| RetryingRpcClient |
An
RpcClient decorator that handles failures of an invocation and retries RPC requests. |
| RetryingRpcClientBuilder |
Builds a new
RetryingRpcClient or its decorator function. |
Client decorator that handles failures and retries requests.Copyright © 2020 LeanCloud. All rights reserved.