public sealed class RetryInfo : IMessage<RetryInfo>, IEquatable<RetryInfo>, IDeepCloneable<RetryInfo>, IBufferMessage, IMessage
Describes when the clients can retry a failed request. Clients could ignore
the recommendation here or retry when this information is missing from error
responses.
It's always recommended that clients should use exponential backoff when
retrying.
Clients should wait until retry_delay amount of time has passed since
receiving the error response before retrying. If retrying requests also
fail, clients should use an exponential backoff scheme to gradually increase
the delay between retries based on retry_delay, until either a maximum
number of retries have been reached or a maximum retry delay cap has been
reached.
[[["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-06-03 UTC."],[[["RetryInfo class provides guidelines for clients on how to handle retries for failed requests, recommending exponential backoff strategies."],["Clients are advised to wait for a specified `retry_delay` before attempting to retry a request and to increase delays between retries if failures persist."],["The `RetryInfo` class implements interfaces like IMessage, IEquatable, IDeepCloneable, and IBufferMessage, providing capabilities for message handling, comparison, deep cloning, and buffered operations."],["The class includes properties like `RetryDelay` which suggests a duration clients should wait before retrying, and static properties such as `Descriptor` and `Parser` for message metadata and parsing."],["The `RetryInfo` object offers methods like `Clone()`, `Equals()`, `MergeFrom()`, `CalculateSize()`, `WriteTo()`, and `ToString()` for cloning, comparison, merging, size calculation, serialization, and string representation."]]],[]]