Giter VIP home page Giter VIP logo

Comments (3)

jordanwallwork avatar jordanwallwork commented on June 21, 2024 1

How about using Events to signal that the sub-workflow is finished?

        builder
            .StartWith<StartSubWorkflowA>(x=> x.Input(step => step.WorkflowId, (data, ctx) => ctx.Workflow.Id))
            .WaitFor("SubWorkflowACompleted", (data, ctx) => ctx.Workflow.Id))

The StartSubWorkflowA step would trigger the sub workflow, passing it the WorkflowId so it can dispatch it in the event to signal that the subworkflow has finished

public class StartSubWorkflowA : StepBody
{
    private readonly IWorkflowHost _workflowHost;
    
    public string WorkflowId { get; set; }

    public StartSubWorkflowA (IWorkflowHost workflowHost)
    {
        _workflowHost = workflowHost;
    }

    public override ExecutionResult Run(IStepExecutionContext context)
    {
        // kick off sub-workflow. 

        return ExecutionResult.Next();
    }
}

And then as the final step of the sub workflow you'd need to trigger the event letting the "parent" workflow know it can resume:

        await _workflowHost.PublishEvent("SubWorkflowACompleted", _workflowId);

(I've not tried any of this btw, just how I'd approach it if it were me)

from workflow-core.

cjundt avatar cjundt commented on June 21, 2024 1

Hi @jordanwallwork,

This is a good idea but I'd rather use a middleware to trigger the "workflowcompleted" event so that you can use any workflow as a subworkflow.

from workflow-core.

santhanuv avatar santhanuv commented on June 21, 2024

@jordanwallwork @cjundt
Thanks for the info! While we were waiting, we actually stumbled on this approach ourselves. We weren't sure if it was the best way to go, but I think it might work.

On a side note, using middleware to publish the event was a great tip – that really helped out!

from workflow-core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.