A basic implementation of ResultRetryAlgorithm. Using this implementation would mean that
all exceptions should be retried, all responses should be accepted (including null) and
no retrying process should ever be canceled.
[[["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."],[[["This webpage details the `BasicResultRetryAlgorithm` class, a fundamental component for handling retries in Java within the `com.google.api.gax.retrying` package."],["The `BasicResultRetryAlgorithm` class ensures that all exceptions are retried and all responses, including null, are accepted without canceling any retry processes."],["The latest version documented is 2.63.1, and the page lists various previous versions of the class down to 2.7.1, each linking to its specific documentation."],["The class implements the `ResultRetryAlgorithmWithContext` interface and provides methods to determine if a retry should occur (`shouldRetry`) and to create settings for the next retry attempt (`createNextAttempt`), returning null in both implementation cases, indicating that it does not provide any specific settings for the next attempt."],["The `shouldRetry` method returns true if a throwable was present and false if otherwise, indicating if a retry is needed based on if an exception was thrown."]]],[]]