Stop workflow execution
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2015 05:57 AM
Hi, I need to stop workflow at some point of the execution and reactivate it, possibly acting on retries.
How can I do that?
How can I do that?
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2015 02:30 AM
Hi Alef,
Regards
Martin
/**
* Suspends the process instance with the given id.
*
* If a process instance is in state suspended, activiti will not execute jobs
* (timers, messages) associated with this instance.
*
* If you have a process instance hierarchy, suspending one process instance
* form the hierarchy will not suspend other process instances form that
* hierarchy.
*
* @throws ActivitiObjectNotFoundException
* if no such processInstance can be found.
* @throws ActivitiException
* the process instance is already in state suspended.
*/
void suspendProcessInstanceById(String processInstanceId);
Regards
Martin
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2015 03:49 AM
Hi Martin,
I want suspend a specific Process Execution, not a Process Instance.
Suspending an instance, every execution of that instance would be suspended.
I want suspend a specific Process Execution, not a Process Instance.
Suspending an instance, every execution of that instance would be suspended.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2015 02:32 AM
Hi Alef,
I do not understand difference between Process Execution and Process Instance. Can you elaborate it more?
Regards
Martin
I do not understand difference between Process Execution and Process Instance. Can you elaborate it more?
Regards
Martin
