Define the interface for controlling how the Bigtable client backsoff from failed RPC operations.
The C++ client for Bigtable needs to hide partial and temporary failures from the application. However, we need to give the users enough flexibility to control how many attempts are made to reissue operations, how often these attempts are executed, and how to signal that an error has occurred.
The application provides an instance of this class when the Table (or TableAdmin) object is created. This instance serves as a prototype to create new RPCBackoffPolicy objects of the same (dynamic) type and with the same initial state.
[[["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-07-09 UTC."],[[["This document provides details on the `RPCBackoffPolicy` class within the Google Cloud Bigtable C++ client library, used to manage how the client handles failed RPC operations and retries."],["The library includes multiple historical versions of the `RPCBackoffPolicy`, ranging from version 2.11.0 up to 2.37.0-rc as the latest version."],["The `RPCBackoffPolicy` prototype instance is created alongside `Table` or `TableAdmin` objects, enabling the creation of new `RPCBackoffPolicy` objects of the same type and initial state."],["The class defines functions such as `clone()` to make copies, `Setup(grpc::ClientContext &)` to update the context, and `OnCompletion()` variants to manage delays after an RPC operation."],["The `OnCompletion` method will calculate the time to wait before retrying the failed operation."]]],[]]