Skip to content

swiftsoftwaregroup/conductor-client-dotnet

 
 

Repository files navigation

Swift Conductor Client for .NET

⭐ Swift Conductor

Show support for Swift Conductor. Please help spread the awareness by starring Swift Conductor repo.

GitHub stars

Client usage:

  1. Setup swift-conductor-client package
  2. Create and run task workers
  3. Create workflows using code
  4. API Documentation

Install Swift Conductor Client Package​

dotnet add package swift-conductor-client

Configure API Client

using SwiftConductor.Api;
using SwiftConductor.Client;

var configuration = new Configuration() {
    BasePath = "http://localhost:8080",
};

var workflowClient = configuration.GetClient<WorkflowResourceApi>();

workflowClient.StartWorkflow(
    name: "test-sdk-csharp-workflow",
    body: new Dictionary<string, object>(),
    version: 1
)

Create and run task workers

Create and run task workers

Create and Execute Workflows

Create and Execute Workflows

About

Swift Conductor Client SDK for .NET

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors

Languages

  • C# 99.7%
  • Other 0.3%