Workflow Core v2.1.0 Release Notes

Release Date: 2019-09-15 // over 4 years ago
  • Workflow Core 2.1.0

    • ➕ Adds the SyncWorkflowRunner service that enables workflows to be executed synchronously, you can also avoid persisting the state to the persistence store entirely

    usage

    var runner = serviceProvider.GetService\<ISyncWorkflowRunner\>(); ...var worfklow = await runner.RunWorkflowSync("my-workflow", 1, data, TimeSpan.FromSeconds(10));