Reputation: 2838
I'm looking for a way to start/stop/resume a process instance in flowable. In the docs I haven't find anything. All I've found are the operations for start/suspend a deployment process.
Runtimeservice does not have start/suspendProcessByInstanceXXX, at least for what I've found. Are there ways to achieve this?
I don't want to delete running process and then restart, I want to suspend it.
Upvotes: 2
Views: 3789
Reputation: 150
You can achieve this by calling suspendProcessInstanceById() method in RuntimeService which Suspends the process instance with the given process instance id. read more...
Upvotes: 2