Class AddRequestOptions
Wrapper for the Azure.Storage.Queues.QueueClient.SendMessageAsync(System.String) parameter
Inherited Members
Namespace: Akka.Streams.Azure.StorageQueue
Assembly: Akka.Streams.Azure.StorageQueue.dll
Syntax
public class AddRequestOptions
Constructors
| Improve this Doc View SourceAddRequestOptions(Nullable<TimeSpan>, Nullable<TimeSpan>)
Creates a new instance of the AddRequestOptions
Declaration
public AddRequestOptions(TimeSpan? timeToLive = default(TimeSpan? ), TimeSpan? initialVisibilityDelay = default(TimeSpan? ))
Parameters
Type | Name | Description |
---|---|---|
Nullable<TimeSpan> | timeToLive | A TimeSpan specifying the maximum time to allow the message to be in the ueue, or null. |
Nullable<TimeSpan> | initialVisibilityDelay | A TimeSpan specifying the interval of time from now during which the message will be invisible. If null then the message will be visible immediately. |
Properties
| Improve this Doc View SourceInitialVisibilityDelay
Declaration
public TimeSpan? InitialVisibilityDelay { get; }
Property Value
Type | Description |
---|---|
Nullable<TimeSpan> |
TimeToLive
Declaration
public TimeSpan? TimeToLive { get; }
Property Value
Type | Description |
---|---|
Nullable<TimeSpan> |