File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/providers/WorkflowCore.Providers.Azure Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments