danielgerlag / danielgerlag/workflow-core
Can a running workflow with Endless While can be forced Cancel or Stop?
Open
- Dominant language
- C#
- Stars
- 5.9k
- Forks
- 1.3k
- Avg merge
- 1d 1h
- Merged PRs (30d)
- 5
Description
```c#
public class HelloWorld : StepBody
{
public override ExecutionResult Run(IStepExecutionContext context)
{
while (true)
{
Console.WriteLine($"{DateTime.Now}");
}
return ExecutionResult.Next();
}
}
```
Thanks For Your Help
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.