Skip to content

Files

Latest commit

98c5436 · Mar 28, 2022

History

History
This branch is 53 commits behind danielgerlag/workflow-core:master.

WorkflowCore.Sample11

If sample

Illustrates how to implement an If decision within your workflow.

builder
    .StartWith<SayHello>()
    .If(data => data.Counter < 3).Do(then => then
        .StartWith<PrintMessage>()
            .Input(step => step.Message, data => "Value is less than 3")
    )
    .If(data => data.Counter < 5).Do(then => then
        .StartWith<PrintMessage>()
            .Input(step => step.Message, data => "Value is less than 5")
    )
    .Then<SayGoodbye>();