Operation timed polling algorithm, which uses exponential backoff factor for determining when the
next polling operation should be executed. If the polling exceeds the total timeout this
algorithm cancels polling.
[[["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-04-02 UTC."],[[["The webpage details the `OperationTimedPollAlgorithm` class, which is a part of the Google API Client Libraries for Java, specifically within the `com.google.api.gax.longrunning` package."],["The `OperationTimedPollAlgorithm` class extends `ExponentialRetryAlgorithm` and uses exponential backoff to determine polling intervals, canceling polling if the total timeout is exceeded."],["This class includes static methods `create` to initialize the polling algorithm, either using default time computations or with a custom `ApiClock`."],["The `shouldRetry` method determines whether another poll operation should be attempted, throwing a `CancellationException` if no more attempts should be made, and the `shouldRPCTerminate` method is used internally to determine if the RPC should terminate."],["The webpage provides links to the documentation for various versions of the library, starting from version 2.63.1 down to 2.7.1, allowing users to access information specific to their version."]]],[]]