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-03-21 UTC."],[[["The latest version available is 2.63.1, but the current version documented is 2.47.0, and this page provides access to documentation for versions ranging from 2.7.1 to 2.63.1."],["`OperationTimedPollAlgorithm` is a Java class that extends `ExponentialRetryAlgorithm` and is designed for operation timed polling using an exponential backoff for determining the next polling operation."],["The class includes static methods to create instances of the polling algorithm, either using default `NanoClock` or a custom `ApiClock`, and also requires `RetrySettings`."],["The `shouldRetry` method determines if another poll should be attempted, returning `true` or throwing a `CancellationException` if no more attempts should be made, and `shouldRPCTerminate` determines if the polling should terminate based on time remaining."],["The `OperationTimedPollAlgorithm` class inherits several methods from `ExponentialRetryAlgorithm`, such as `createFirstAttempt`, `createNextAttempt`, `shouldRetry`, and `shouldRPCTerminate`."]]],[]]