AzureStorage.QueueService
1.0.1
See the version list below for details.
dotnet add package AzureStorage.QueueService --version 1.0.1
NuGet\Install-Package AzureStorage.QueueService -Version 1.0.1
<PackageReference Include="AzureStorage.QueueService" Version="1.0.1" />
paket add AzureStorage.QueueService --version 1.0.1
#r "nuget: AzureStorage.QueueService, 1.0.1"
// Install AzureStorage.QueueService as a Cake Addin #addin nuget:?package=AzureStorage.QueueService&version=1.0.1 // Install AzureStorage.QueueService as a Cake Tool #tool nuget:?package=AzureStorage.QueueService&version=1.0.1
Azure Storage Queue Service library
<img src="./images/logo.jpg" alt="Logo" width=75 />
This project abstracts away the complexities of using the Azure Storage account's queue feature targeting .NET 6 and higher.
Pre-requisites
You will need to create an Azure Storage account in the Azure portal using a unique name, then create a queue, and finally obtain your connection string.
- Create a storage account in your Azure portal.
- Obtain your connection string from the Azure portal.
Message handling behavior
- Sending a message will automatically serialize the payload to
BinaryData
. - By default one message is pulled when
ReceiveMessagesAsync<T>
is called, however this is configurable. - If your handler does not throw, messages are automatically removed from the queue otherwise the message is returned to the queue for delivery again.
- Automatic deserialization uses the
System.Text.Json
deserialization behavior. This can be overridden by specifying your ownJsonSerializerOptions
as seen below. - You can 'peek' messages using
PeekMessages<T>
which returns a collection but doesn't remove them from the queue.
Configuration
Add the Nuget package
JasonShave.AzureStorage.QueueService
to your .NET projectSet your
ConnectionString
andQueueName
properties in your .NET User Secrets store,appsettings.json
, or anywhere yourIConfiguration
provider can look for theQueueClientSettings
. For example:{ "QueueClientSettings" : { "ConnectionString": "[your_connection_string]", "QueueName": "[your_queue_name]", "CreateIfNotExists": true } }
You can create your queue in advance or allow the library to create it during runtime by setting the
CreateIfNotExists
property totrue
.
Configure dependency injection
The library has been updated to handle both a default client and a named-client experience similar to how the .NET IHttpClientFactory
works. This section outlines both ways you can configure dependency injection to either use the default client or a named client in case you have more than one queue to pull from.
Add the default client
Use the AddAzureStorageQueueClient()
method and specify the settings for the ConnectionString
and the QueueName
or use the IConfiguration
binder to bind with a JSON configuration as shown above.
services.AddAzureStorageQueueClient(x =>
x.AddDefaultClient(y =>
{
y.ConnectionString = "[your_connection_string]";
y.QueueName = "[your_queue_name]";
}));
// get configuration from IConfiguration binder
services.AddAzureStorageQueueClient(x =>
x.AddDefaultClient(y => Configuration.Bind(nameof(QueueClientSettings), y)));
Add a named client
Use the AddAzureStorageQueueClient()
method with the AddClient()
method to add and configure different queue clients which can be obtained using the IQueueClientFactory
and the GetQueueClient()
method.
services.AddAzureStorageQueueClient(x =>
x.AddClient("MyClient1", y =>
{
y.ConnectionString = "[your_connection_string]";
y.QueueName = "[your_queue_name]";
}));
// get configuration from IConfiguration binder
services.AddAzureStorageQueueClient(x =>
x.AddClient("MyClient1", y => Configuration.Bind(nameof(QueueClientSettings), y)));
// add multiple named clients and a default client
services.AddAzureStorageQueueClient(x =>
{
x.AddClient("MyClient1", y => Configuration.Bind(nameof(QueueClientSettings), y));
x.AddClient("MyClient2", y =>
{
y.ConnectionString = "[your_connection_string]";
y.QueueName = "[your_queue_name]";
});
x.AddDefaultClient(y => Configuration.Bind(nameof(DefaultQueueClientSettings), y));
});
Using the IQueueClientFactory
Example 1: Get a default queue client
// inject the IQueueClientFactory and get a default client
public class MyClass
{
private readonly AzureStorageQueueClient _queueClient;
public MyClass(IQueueClientFactory queueClientFactory)
{
_queueClient = queueClientFactory.GetQueueClient();
}
}
Example 2: Get a named client
// inject the IQueueClientFactory and get a default client
public class MyClass
{
private readonly AzureStorageQueueClient _queueClient;
public MyClass(IQueueClientFactory queueClientFactory)
{
_queueClient = queueClientFactory.GetQueueClient("MyClient1");
}
}
Sending messages to an Azure storage account queue
The following example shows the .NET Worker Service template where the class uses the IHostedService
interface to send a message every five seconds.
Inject the
IQueueClientFactory
interface and use as follows:public class Sender : IHostedService { private readonly AzureStorageQueueClient _queueClient; public Sender(IQueueClientFactory queueClientFactory) => _queueClient = queueClientFactory.GetQueueClient(); public async Task StartAsync(CancellationToken cancellationToken) { while (!cancellationToken.IsCancellationRequested) { var myMessage = new MyMessage("Test"); await _queueClient.SendMessageAsync<MyMessage>(myMessage, cancellationToken); await Task.Delay(5000); } } }
Receiving and handling messages from an Azure storage account queue
The following example shows the .NET Worker Service template where the class uses the IHostedService
interface to run a particular code block repeatedly. The application will receive the payload from the queue repeatedly.
Inject the
IQueueClientFactory
interface and use as follows:public class MySubscriber : IHostedService { private readonly AzureStorageQueueClient _queueClient; private readonly IMyMessageHandler _myMessageHandler; // see optional handler below public MySubscriber(IQueueClientFactory queueClientFactory, IMyMessageHandler myMessageHandler) { // get the default queue client _queueClient = queueClientFactory.GetQueueClient(); _myMessageHandler = myMessageHandler; } public async Task StartAsync(CancellationToken cancellationToken) { while (!cancellationToken.IsCancellationRequested) { await _queueClient.ReceiveMessagesAsync<MyMessage>( message => _myMessageHandler.HandleAsync(message), exception => _myMessageHandler.HandleExceptionAsync(exception), cancellationToken); await Task.Delay(1000); } } }
Handling multiple messages
The library allows you to pull multiple messages by specifying the maxMessage
count as an integer in the ReceiveMessagesAsync<T>()
method. These are sent to the handler as individual messages but pulled from the queue as a batch the consuming application would hold a lock on for the default duration used in the Azure Storage Queue library.
await _queueClient.ReceiveMessagesAsync<MyMessage>(HandleMessage, HandleException, cancellationToken, 10);
License
This project is licensed under the MIT License - see the LICENSE.md file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Azure.Storage.Queues (>= 12.20.1)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.