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 function executions that have failed within the Google Cloud Functions environment."],["Failed function executions will be automatically retried for up to 7 days, utilizing an exponential backoff strategy that has a cap of 10 seconds."],["The `Retry` class implements interfaces like `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, and inherits from the base `Object` class."],["The namespace for the `Retry` class is `Google.Cloud.Functions.V1`, and it is housed within the `Google.Cloud.Functions.V1.dll` assembly."],["The class offers two constructors, one is parameterless, and the other takes an object of the type `FailurePolicy.Types.Retry` as a parameter."]]],[]]