Skip to content

Commit 1c671e2

Browse files
committed
README.md
1 parent 2b83eb1 commit 1c671e2

File tree

1 file changed

+22
-0
lines changed
  • src/providers/WorkflowCore.Providers.Azure

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Azure providers for Workflow Core
2+
3+
* Provides [DLM](https://en.wikipedia.org/wiki/Distributed_lock_manager) support on [Workflow Core](../../README.md) using Azure Blob Storage leases.
4+
* Provides Queueing support on [Workflow Core](../../README.md) using Azure Storage queues.
5+
6+
This makes it possible to have a cluster of nodes processing your workflows.
7+
8+
## Installing
9+
10+
Install the NuGet package "WorkflowCore.Providers.Azure"
11+
12+
```
13+
PM> Install-Package WorkflowCore.Providers.Azure
14+
```
15+
16+
## Usage
17+
18+
Use the .UseAzureSyncronization extension method when building your service provider.
19+
20+
```C#
21+
services.AddWorkflow(x => x.UseAzureSyncronization("azure storage connection string"));
22+
```

0 commit comments

Comments
 (0)