Skip to content

Commit 4e772e4

Browse files
committed
release notes
1 parent 89163d2 commit 4e772e4

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

ReleaseNotes/2.1.0.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Workflow Core 2.1.0
2+
3+
* Adds the `SyncWorkflowRunner` service that enables workflows to be executed synchronously, you can also avoid persisting the state to the persistence store entirely
4+
5+
usage
6+
```c#
7+
var runner = serviceProvider.GetService<ISyncWorkflowRunner>();
8+
...
9+
var worfklow = await runner.RunWorkflowSync("my-workflow", 1, data, TimeSpan.FromSeconds(10));
10+
```

WorkflowCore.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ReleaseNotes", "ReleaseNote
9999
ReleaseNotes\1.9.2.md = ReleaseNotes\1.9.2.md
100100
ReleaseNotes\1.9.3.md = ReleaseNotes\1.9.3.md
101101
ReleaseNotes\2.0.0.md = ReleaseNotes\2.0.0.md
102+
ReleaseNotes\2.1.0.md = ReleaseNotes\2.1.0.md
102103
EndProjectSection
103104
EndProject
104105
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkflowCore.Sample14", "src\samples\WorkflowCore.Sample14\WorkflowCore.Sample14.csproj", "{6BC66637-B42A-4334-ADFB-DBEC9F29D293}"

0 commit comments

Comments
 (0)