Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the ability to optionally specify the visibility timeout when d…
…equeuing a message from an Azure Storage Queue The existing Dequeue member of the ProvidedQueue type gains an additional optional Timespan parameter. I also added an overload that accepts a TimeSpan and uses the default connection string. The net effect is to allow the user to call Dequeue in the following ways: Dequeue() -> Dequeue(?connectionString, ?visibilityTimeout) Dequeue("some connection string") -> Dequeue(?connectionString, ?visibilityTimeout) Dequeue("some connection string", TimeSpan.FromMinutes(1..0) -> Dequeue(?connectionString, ?visibilityTimeout) Dequeue(TimeSpan.FromMinutes(1.0) -> Dequeue(visibilityTimeout)
- Loading branch information