The attempt count. It is a zero-based value (first attempt will have this value set to 0). For
streamed RPCs this will be reset after every successful message.
The overall attempt count. It is a zero-based value (first attempt will have this value set to
0). This will be the sum of all attempt counts for a streaming RPC and will be equal to #getAttemptCount() for unary RPCs.
Returns randomized attempt delay. By default this value is calculated based on the
retryDelay value, and is used as the actual attempt execution delay.
Returns
Type
Description
org.threeten.bp.Duration
getRetryDelay()
publicabstractDurationgetRetryDelay()
Returns the calculated retry delay. Note that the actual delay used for retry scheduling may be
different (randomized, based on this value).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage provides documentation for `TimedAttemptSettings` in the Google API Client Library for Java (gax), specifically for version 2.24.0, with links to various versions, including the latest version 2.63.1."],["`TimedAttemptSettings` is an abstract class that defines the time-specific properties of a retry attempt, inheriting from `java.lang.Object`."],["The class includes static and instance methods like `newBuilder()` to create a `TimedAttemptSettings.Builder` and methods such as `getAttemptCount()`, `getOverallAttemptCount()`, `getRetryDelay()`, `getRandomizedRetryDelay()`, and `getRpcTimeout()`, to manage attempt-related parameters."],["The document details that the `getAttemptCount()` method returns the zero-based attempt count, which resets for each successful message in streamed RPCs, while `getOverallAttemptCount()` sums up all attempt counts for a streaming RPC and equals `getAttemptCount()` for unary RPCs."],["This information is relevant for developers using the Google API Client Library for Java, particularly in managing retries and timeouts for API calls."]]],[]]