Show / Hide Table of Contents

    Class AddRequestOptions

    Wrapper for the Azure.Storage.Queues.QueueClient.SendMessageAsync(System.String) parameter

    Inheritance
    Object
    AddRequestOptions
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Akka.Streams.Azure.StorageQueue
    Assembly: Akka.Streams.Azure.StorageQueue.dll
    Syntax
    public class AddRequestOptions

    Constructors

    | Improve this Doc View Source

    AddRequestOptions(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 Source

    InitialVisibilityDelay

    Declaration
    public TimeSpan? InitialVisibilityDelay { get; }
    Property Value
    Type Description
    Nullable<TimeSpan>
    | Improve this Doc View Source

    TimeToLive

    Declaration
    public TimeSpan? TimeToLive { get; }
    Property Value
    Type Description
    Nullable<TimeSpan>
    • Improve this Doc
    • View Source
    Back to top Copyright © 2013-2020 Akka.NET project
    Generated by DocFX