workflow-es-azure
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

Azure providers for Workflow ES

Provides distributed lock management and queue services on Workflow ES using Azure Storage.

Installing

Install the npm package "workflow-es-azure"

> npm install workflow-es-azure --save

Usage

Use the .useLockManager() and .useQueueManager() methods when setting up your workflow host.

const workflow_es = require("workflow-es");
const workflow_azure = require("workflow-es-azure");
...
var config = workflow_es.configureWorkflow();
config.useLockManager(new workflow_azure.AzureLockManager('Azure storage connection string'));    
config.useQueueManager(new workflow_azure.AzureQueueProvider('Azure storage connection string'));
 
var host = config.getHost();
...
await host.start();

Readme

Keywords

Package Sidebar

Install

npm i workflow-es-azure

Weekly Downloads

4

Version

2.1.0

License

MIT

Unpacked Size

19.1 kB

Total Files

12

Last publish

Collaborators

  • danielgerlag