Skip to content

Latest commit

 

History

History
 
 

README.md

SQL Server Service Broker queue provider for Workflow Core

Thank you to Roberto Paterlini for contributing this provider

Provides distributed worker support on Workflow Core using SQL Server Service Broker.

This makes it possible to have a cluster of nodes processing your workflows, along with a distributed lock manager.

Installing

Install the NuGet package "WorkflowCore.QueueProviders.SqlServer"

PM> Install-Package WorkflowCore.QueueProviders.SqlServer -Pre

Usage

Use the .UseSqlServerBroker extension method when building your service provider.

services.AddWorkflow(x => x.UseSqlServerBroker(@"Server=.;Database=WorkflowCore;Trusted_Connection=True;", true, true));