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"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-15 UTC."],[[["This document outlines the `BasicResultRetryAlgorithm` class, a fundamental implementation of the `ResultRetryAlgorithm` interface for handling retries in Java."],["The `BasicResultRetryAlgorithm` will retry if any exception was thrown, will accept all responses, and will not cancel the retrying process."],["The latest available version of the algorithm is 2.63.1, and numerous older versions are also documented, including 2.62.0, 2.61.0, 2.60.0, down to 2.7.1."],["The `createNextAttempt` method consistently returns null, meaning no specific settings are applied for the subsequent attempt, while the `shouldRetry` method only returns true if an exception is thrown, otherwise it will return false."],["The class inherits members from `java.lang.Object`, and implements the interface `ResultRetryAlgorithmWithContext`, and is used to determine whether a function should be retried or not."]]],[]]