ServerlessWorkflow.Sdk.IO
1.0.0-alpha1
Prefix Reserved
This is a prerelease version of ServerlessWorkflow.Sdk.IO.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ServerlessWorkflow.Sdk.IO --version 1.0.0-alpha1
NuGet\Install-Package ServerlessWorkflow.Sdk.IO -Version 1.0.0-alpha1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ServerlessWorkflow.Sdk.IO" Version="1.0.0-alpha1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ServerlessWorkflow.Sdk.IO --version 1.0.0-alpha1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ServerlessWorkflow.Sdk.IO, 1.0.0-alpha1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ServerlessWorkflow.Sdk.IO as a Cake Addin #addin nuget:?package=ServerlessWorkflow.Sdk.IO&version=1.0.0-alpha1&prerelease // Install ServerlessWorkflow.Sdk.IO as a Cake Tool #tool nuget:?package=ServerlessWorkflow.Sdk.IO&version=1.0.0-alpha1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Serverless Workflow .NET SDK
The official .NET SDK for the Serverless Workflow DSL.
The SDK is composed of three Nuget packages:
- Core, which contains the models of the Serverless Workflow DSL
- Builders, which contains service used to build workflow definitions programmatically
- IO, which contains the services used to read and write workflow definitions
Installation
Core:
dotnet add package ServerlessWorkflow.Sdk
Builders:
dotnet add package ServerlessWorkflow.Sdk.Builders
IO:
dotnet add package ServerlessWorkflow.Sdk.IO
Example usage
Building a workflow definition programmatically:
var definition = new WorkflowDefinitionBuilder()
.WithName("fake-workflow")
.WithVersion("0.1.0:fake")
.Do("todo-1", task => task
.Call("http")
.With("method", "get")
.With("uri", "https://fake-api.com"))
.Build();
Reading and writing a workflow definition:
using var inputStream = File.OpenRead("workflow.yaml");
var reader = WorkflowDefinitionReader.Create();
var workflow = await reader.ReadAsync(inputStream);
using var outputStream = File.Create("workflow.yaml");
var writer = WorkflowDefinitionWriter.Create();
await writer.WriteAsync(workflow, stream, WorkflowDefinitionFormat.Yaml);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- ServerlessWorkflow.Sdk (>= 1.0.0-alpha1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on ServerlessWorkflow.Sdk.IO:
Package | Downloads |
---|---|
Synapse.Api.Client.Http
Contains the HTTP client for the Synapse API |
|
Synapse.Core.Infrastructure
Contains essential infrastructure components for the Synapse applications, including utilities and services that support the implementation and management of core functionalities |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on ServerlessWorkflow.Sdk.IO:
Repository | Stars |
---|---|
serverlessworkflow/synapse
Serverless Workflow Management System (WFMS)
|
Version | Downloads | Last updated |
---|---|---|
1.0.0-alpha5.1 | 199 | 10/25/2024 |
1.0.0-alpha5 | 126 | 10/22/2024 |
1.0.0-alpha4.1 | 48 | 10/22/2024 |
1.0.0-alpha4 | 98 | 10/18/2024 |
1.0.0-alpha3.1 | 62 | 10/18/2024 |
1.0.0-alpha3 | 277 | 10/11/2024 |
1.0.0-alpha2.16 | 113 | 10/1/2024 |
1.0.0-alpha2.15 | 444 | 9/8/2024 |
1.0.0-alpha2.14 | 67 | 9/6/2024 |
1.0.0-alpha2.13 | 51 | 9/6/2024 |
1.0.0-alpha2.12 | 161 | 8/30/2024 |
1.0.0-alpha2.11 | 122 | 8/21/2024 |
1.0.0-alpha2.10 | 65 | 8/21/2024 |
1.0.0-alpha2.9 | 66 | 8/21/2024 |
1.0.0-alpha2.8 | 115 | 8/9/2024 |
1.0.0-alpha2.7 | 63 | 8/8/2024 |
1.0.0-alpha2.6 | 62 | 6/28/2024 |
1.0.0-alpha2.5 | 119 | 6/26/2024 |
1.0.0-alpha2.4 | 49 | 6/26/2024 |
1.0.0-alpha2.3 | 47 | 6/26/2024 |
1.0.0-alpha2.2 | 56 | 6/25/2024 |
1.0.0-alpha2.1 | 70 | 6/21/2024 |
1.0.0-alpha2 | 57 | 6/19/2024 |
1.0.0-alpha1 | 174 | 5/22/2024 |