Start workflow asynchronously by name

Hello,

I want to start a workflow asynchronously using its’ name in the Java framework. How would I go about to do this?

Thanks

    WorkflowStub workflow = workflowClient.newUntypedWorkflowStub("WorkflowType", options);
    WorkflowExecution execution = workflow.start(arg1, arg2);

1 Like