File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -72,17 +72,17 @@ public class MyWorkflow : IWorkflow
72
72
73
73
``` c#
74
74
builder
75
- .StartWith <LogStart >()
76
- .Saga (saga => saga
77
- .StartWith <Task1 >()
78
- .CompensateWith <UndoTask1 >()
79
- .Then <Task2 >()
80
- .CompensateWith <UndoTask2 >()
81
- .Then <Task3 >()
82
- .CompensateWith <UndoTask3 >()
83
- )
84
- .OnError (Models .WorkflowErrorHandling .Retry , TimeSpan .FromMinutes (10 ))
85
- .Then <LogEnd >();
75
+ .StartWith <LogStart >()
76
+ .Saga (saga => saga
77
+ .StartWith <Task1 >()
78
+ .CompensateWith <UndoTask1 >()
79
+ .Then <Task2 >()
80
+ .CompensateWith <UndoTask2 >()
81
+ .Then <Task3 >()
82
+ .CompensateWith <UndoTask3 >()
83
+ )
84
+ .OnError (Models .WorkflowErrorHandling .Retry , TimeSpan .FromMinutes (10 ))
85
+ .Then <LogEnd >();
86
86
```
87
87
88
88
## Persistence
You can’t perform that action at this time.
0 commit comments