hdrachmann / Rebus.AzureQueues

:bus: Azure Storage Queues transport implementation for Rebus

Home Page:https://mookid.dk/category/rebus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rebus.AzureQueues

install from nuget

Provides an Azure Storage Queues-based transport implementation for Rebus.

It's just

var storageAccount = CloudStorageAccount.Parse(connectionString);

Configure.With(...)
	.Transport(t => t.UseAzureStorageQueues(storageAccount, "your_queue"))
	.(...)
	.Start();

or

var storageAccount = CloudStorageAccount.Parse(connectionString);

var bus Configure.With(...)
	.Transport(t => t.UseAzureStorageQueuesAsOneWayClient(storageAccount))
	.(...)
	.Start();

and off you go! 🚀


About

:bus: Azure Storage Queues transport implementation for Rebus

https://mookid.dk/category/rebus

License:Other


Languages

Language:C# 95.9%Language:Batchfile 4.1%