Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Activity Control intrinsic functions #97

Open
thantos opened this issue Dec 12, 2022 · 0 comments · May be fixed by #101
Open

Activity Control intrinsic functions #97

thantos opened this issue Dec 12, 2022 · 0 comments · May be fixed by #101

Comments

@thantos
Copy link
Contributor

thantos commented Dec 12, 2022

It should be possible to control activities from the calling workflow or from other workflows.

  • Cancel - semantic cancellation, throws an error
  • Fail - throw error
  • Complete - successful result

Intrinsic

api.any(async () => {
   // or event handler or workflow
   await cancelActivity(activityToken, reason);
   await failActivity(activityToken, error, message);
   await completeActivity(activityToken, result);
})

Instance

const myAct = activity(...);
workflow(() => {
   // start activity
   const actInstance = myAct();
   
   // cancel, error, or complete the workflow
   await actInstance.cancel(reason);
   await actInstance.fail(new Error()); // or actInstance.fail(error, message);
   await actInstance.complete(result);

  await actInstance; 
});
@thantos thantos linked a pull request Dec 13, 2022 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant