Cloud Pub/Sub v1 API - Class RetryPolicy (3.12.0)

public sealed class RetryPolicy : IMessage<RetryPolicy>, IEquatable<RetryPolicy>, IDeepCloneable<RetryPolicy>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Pub/Sub v1 API class RetryPolicy.

A policy that specifies how Pub/Sub retries message delivery.

Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff.

RetryPolicy will be triggered on NACKs or acknowledgement deadline exceeded events for a given message.

Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff.

Inheritance

object > RetryPolicy

Namespace

Google.Cloud.PubSub.V1

Assembly

Google.Cloud.PubSub.V1.dll

Constructors

RetryPolicy()

public RetryPolicy()

RetryPolicy(RetryPolicy)

public RetryPolicy(RetryPolicy other)
Parameter
NameDescription
otherRetryPolicy

Properties

MaximumBackoff

public Duration MaximumBackoff { get; set; }

Optional. The maximum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 600 seconds.

Property Value
TypeDescription
Duration

MinimumBackoff

public Duration MinimumBackoff { get; set; }

Optional. The minimum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds.

Property Value
TypeDescription
Duration