public sealed class Pipeline.Types.RetryPolicy : IMessage<Pipeline.Types.RetryPolicy>, IEquatable<Pipeline.Types.RetryPolicy>, IDeepCloneable<Pipeline.Types.RetryPolicy>, IBufferMessage, IMessage
Reference documentation and code samples for the Eventarc v1 API class Pipeline.Types.RetryPolicy.
The retry policy configuration for the Pipeline. The pipeline exponentially backs off in case the destination is non responsive or returns a retryable error code. The default semantics are as follows: The backoff starts with a 5 second delay and doubles the delay after each failed attempt (10 seconds, 20 seconds, 40 seconds, etc.). The delay is capped at 60 seconds by default. Please note that if you set the min_retry_delay and max_retry_delay fields to the same value this will make the duration between retries constant.
Implements
IMessagePipelineTypesRetryPolicy, IEquatablePipelineTypesRetryPolicy, IDeepCloneablePipelineTypesRetryPolicy, IBufferMessage, IMessageNamespace
Google.Cloud.Eventarc.V1Assembly
Google.Cloud.Eventarc.V1.dll
Constructors
RetryPolicy()
public RetryPolicy()
RetryPolicy(RetryPolicy)
public RetryPolicy(Pipeline.Types.RetryPolicy other)
Parameter | |
---|---|
Name | Description |
other |
PipelineTypesRetryPolicy |
Properties
MaxAttempts
public int MaxAttempts { get; set; }
Optional. The maximum number of delivery attempts for any message. The value must be between 1 and 100. The default value for this field is 5.
Property Value | |
---|---|
Type | Description |
int |
MaxRetryDelay
public Duration MaxRetryDelay { get; set; }
Optional. The maximum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 60.
Property Value | |
---|---|
Type | Description |
Duration |
MinRetryDelay
public Duration MinRetryDelay { get; set; }
Optional. The minimum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 5.
Property Value | |
---|---|
Type | Description |
Duration |