Start/stop a process instance in flowable

Usr

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.

Sherif Abdelkhaliq

You can achieve this by calling suspendProcessInstanceById() method in RuntimeService which Suspends the process instance with the given process instance id. read more...

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related