public sealed class Retry : IMessage<FailurePolicy.Types.Retry>, IEquatable<FailurePolicy.Types.Retry>, IDeepCloneable<FailurePolicy.Types.Retry>, IBufferMessage, IMessage
Describes the retry policy in case of function's execution failure.
A function execution will be retried on any failure.
A failed execution will be retried up to 7 days with an exponential backoff
(capped at 10 seconds).
Retried execution is charged as any other execution.
[[["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 `Retry` class defines the policy for retrying a function's execution in case of failure within the `Google.Cloud.Functions.V1` namespace."],["Failed function executions will be retried for up to 7 days, using an exponential backoff strategy with a 10-second cap."],["The `Retry` class implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, ensuring comprehensive functionality."],["This class has two constructors, a default `Retry()` constructor, and a `Retry(FailurePolicy.Types.Retry)` constructor that copies the properties of the provided FailurePolicy.Types.Retry object."],["There are various versions of the library available, ranging from version 1.1.0 to 2.7.0, with the newest being version 2.7.0."]]],[]]