In the code that is calling env.WORKFLOW.create(), is there any way to wait for that workflow to com

In the code that is calling env.WORKFLOW.create(), is there any way to wait for that workflow to complete to continue executing that code? (assume it's from another worker). I know I can call instance.status at some point after it's complete, but not sure how I know when that is, and I need some context from the workflow's result in this other spot before continuing.

I figure that I should probably restructure all of this at some point so that isn't necessary, was just trying to see if I could avoid restructuring too much of my code
Was this page helpful?