AzureQueueDataManager Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AzureQueueDataManager(ILoggerFactory, String, AzureQueueOptions)
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
Constructor.
public AzureQueueDataManager (Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, string queueName, Orleans.Configuration.AzureQueueOptions options);
new Orleans.AzureUtils.AzureQueueDataManager : Microsoft.Extensions.Logging.ILoggerFactory * string * Orleans.Configuration.AzureQueueOptions -> Orleans.AzureUtils.AzureQueueDataManager
Public Sub New (loggerFactory As ILoggerFactory, queueName As String, options As AzureQueueOptions)
Parameters
- loggerFactory
- ILoggerFactory
logger factory to use
- queueName
- String
Name of the queue to be connected to.
- options
- AzureQueueOptions
Queue connection options.
Applies to
AzureQueueDataManager(String, String, Nullable<TimeSpan>)
Constructor.
public AzureQueueDataManager (string queueName, string storageConnectionString, TimeSpan? visibilityTimeout = default);
new Orleans.AzureUtils.AzureQueueDataManager : string * string * Nullable<TimeSpan> -> Orleans.AzureUtils.AzureQueueDataManager
Public Sub New (queueName As String, storageConnectionString As String, Optional visibilityTimeout As Nullable(Of TimeSpan) = Nothing)
Parameters
- queueName
- String
Name of the queue to be connected to.
- storageConnectionString
- String
Connection string for the Azure storage account used to host this table.
Applies to
AzureQueueDataManager(ILoggerFactory, String, Nullable<TimeSpan>, Func<Task<QueueServiceClient>>)
- Source:
- AzureQueueDataManager.cs
Constructor.
public AzureQueueDataManager (Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, string queueName, TimeSpan? messageVisibilityTimeout, Func<System.Threading.Tasks.Task<Azure.Storage.Queues.QueueServiceClient>> createQueueClient);
new Orleans.AzureUtils.AzureQueueDataManager : Microsoft.Extensions.Logging.ILoggerFactory * string * Nullable<TimeSpan> * Func<System.Threading.Tasks.Task<Azure.Storage.Queues.QueueServiceClient>> -> Orleans.AzureUtils.AzureQueueDataManager
Public Sub New (loggerFactory As ILoggerFactory, queueName As String, messageVisibilityTimeout As Nullable(Of TimeSpan), createQueueClient As Func(Of Task(Of QueueServiceClient)))
Parameters
- loggerFactory
- ILoggerFactory
logger factory to use
- queueName
- String
Name of the queue to be connected to.
- createQueueClient
- Func<Task<QueueServiceClient>>
Function used to create the queue service client.
Applies to
AzureQueueDataManager(ILoggerFactory, String, String, Nullable<TimeSpan>)
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
- Source:
- AzureQueueDataManager.cs
Constructor.
public AzureQueueDataManager (Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, string queueName, string storageConnectionString, TimeSpan? visibilityTimeout = default);
new Orleans.AzureUtils.AzureQueueDataManager : Microsoft.Extensions.Logging.ILoggerFactory * string * string * Nullable<TimeSpan> -> Orleans.AzureUtils.AzureQueueDataManager
Public Sub New (loggerFactory As ILoggerFactory, queueName As String, storageConnectionString As String, Optional visibilityTimeout As Nullable(Of TimeSpan) = Nothing)
Parameters
- loggerFactory
- ILoggerFactory
logger factory to use
- queueName
- String
Name of the queue to be connected to.
- storageConnectionString
- String
Connection string for the Azure storage account used to host this table.
Applies to
AzureQueueDataManager(String, String, String, Nullable<TimeSpan>)
Constructor.
public AzureQueueDataManager (string queueName, string deploymentId, string storageConnectionString, TimeSpan? visibilityTimeout = default);
new Orleans.AzureUtils.AzureQueueDataManager : string * string * string * Nullable<TimeSpan> -> Orleans.AzureUtils.AzureQueueDataManager
Public Sub New (queueName As String, deploymentId As String, storageConnectionString As String, Optional visibilityTimeout As Nullable(Of TimeSpan) = Nothing)
Parameters
- queueName
- String
Name of the queue to be connected to.
- deploymentId
- String
The deployment id of the Azure service hosting this silo. It will be concatenated to the queueName.
- storageConnectionString
- String
Connection string for the Azure storage account used to host this table.