rebus-org / Rebus.AzureQueues

:bus: Azure Storage Queues transport implementation for Rebus
https://mookid.dk/category/rebus
Other
7 stars 5 forks source link

Feat/queuefactory #4

Closed asleire closed 4 years ago

asleire commented 4 years ago

Fixes #1

Public changes:

Internal changes:

No breaking changes

asleire commented 4 years ago

I wasn't sure whether to create the interface ICloudQueueFactory or simply use a Func<string,Task<CloudQueue>>. A Func would've been easier to use, but I still feel like an interface is the neater way to go.

mookid8000 commented 4 years ago

Ah, neat!

One thing though: I think it would be more Rebus-like to pull the required ICloudQueueFactory from Rebus' configuration container ("injectionist").

I'll add a few inline comments... just a sec

mookid8000 commented 4 years ago

Cool, thanks! 👍 your contribution is out as Rebus.AzureQueues 0.4.0 on NuGet.org now 😄

asleire commented 4 years ago

Awesome, thanks!