changes.mady.by.user Aubergine
Saved on Oct 28, 2012
Saved on Oct 29, 2012
Abort the current run of a process instance, optionally cancelling any queued runs.
ProcessesProcess("myProcess").abort(all); // note: instance.onEnd() will be called when the aborted run ends
all
Boolean
If true all queued runs will be cancelled.
true
Default: false
false
The process instance is returned, so you can chain more instance methods, eg:
ProcessesProcess("foo").abort(...).addTask(...).run();
Requires: