* Implemented workflow sink module * Sequentual process of saving sinks in single consumer * Refactor * Log errors during sink export * Removed redundant classes * Use in process messaging in bundle * Fixed the issue with duplicated ResultVariable key on serializing * Moved workflowsink modules out of persistence projects * Moved migrations out of old projects Co-authored-by: Gürkan Güran <grkngrn@gmail.com> Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
28 lines
720 B
C#
28 lines
720 B
C#
using Elsa.Workflows.Core.Activities;
|
|
using Elsa.Workflows.Core.Services;
|
|
|
|
namespace Elsa.IntegrationTests.Activities;
|
|
|
|
class NestedSequentialWorkflow : WorkflowBase
|
|
{
|
|
protected override void Build(IWorkflowBuilder workflow)
|
|
{
|
|
workflow.Root = new Sequence
|
|
{
|
|
Activities =
|
|
{
|
|
new WriteLine("Start"),
|
|
new Sequence
|
|
{
|
|
Activities =
|
|
{
|
|
new WriteLine("Line 1"),
|
|
new WriteLine("Line 2"),
|
|
new WriteLine("Line 3")
|
|
}
|
|
},
|
|
new WriteLine("End"),
|
|
}
|
|
};
|
|
}
|
|
} |