Workflow Pause/Terminate

the nocode time delay action can’t be canceled. If you need to create your own cancelable timers you need to use js with setTimeout or setInterval and their correspondent clear functions, and trigger workflows (wwLib.executeWorkflow) from the callbacks.
There is a post by Aurelie about something like this.
It’s very easy to create infinite loops or multiple instances of the timeout because of multiple executions that don’t clear the previous instance, so be aware of this and check your implementation.

1 Like