AzureNetQ
AzureNetQ copied to clipboard
An easy to use .NET API for Azure Service Bus
- Upgraded to .net 4.6.1 - Installed the newest nuget libs + Azure Service Bus
Added funcationality to accept delayed messages when using publish/subscribe pattern.
I have multiple workers that subscribe with the following code: ``` csharp this._bus.SubscribeAsync(this.OnMessageReceived, config => { config.WithSubscription(this._configuration["SubscriptionId"]); config.WithTopic(this._configuration["Topic"]); }); ``` When I fire the workers up for the first time...