Class AzureQueueSendOptions
- Namespace
- Savvyio.Extensions.QueueStorage
- Assembly
- Savvyio.Extensions.QueueStorage.dll
Configuration options that is related to sending messages from an Azure Storage Queue.
public class AzureQueueSendOptions : IParameterObject
- Inheritance
-
AzureQueueSendOptions
- Implements
Properties
TimeToLive
Gets or sets the time-to-live for the messages. Default is 7 days.
public TimeSpan TimeToLive { get; set; }
Property Value
- TimeSpan
The time-to-live for the messages.
VisibilityTimeout
Gets or sets the visibility timeout for the messages. Default is Zero.
public TimeSpan VisibilityTimeout { get; set; }
Property Value
- TimeSpan
The visibility timeout for the messages.
Remarks
The minimum allowed value is Zero, and the maximum allowed value is limited to MaxVisibilityTimeout.
Reference: https://learn.microsoft.com/en-us/rest/api/storageservices/put-message#uri-parameters