flowable / flowable/flowable-engine
Flowable-rest module add/delete multiple instances execution API does not exist
- Dominant language
- Java
- Stars
- 9.5k
- Forks
- 2.9k
- Avg merge
- 7h 8m
- Merged PRs (30d)
- 2
Description
**Is your feature request related to a problem? Please describe.**
Flowable-rest module add/delete multiple instances execution API
In flowable-engine Include **runtimeService.addMultiInstanceExecution** and **runtimeService.deleteMultiInstanceExecution** function.
```
public Execution addMultiInstanceExecution(String activityId, String parentExecutionId, Map executionVariables) {
return (Execution)this.commandExecutor.execute(new AddMultiInstanceExecutionCmd(activityId, parentExecutionId, executionVariables));
}
public void deleteMultiInstanceExecution(String executionId, boolean executionIsCompleted) {
this.commandExecutor.execute(new DeleteMultiInstanceExecutionCmd(executionId, executionIsCompleted));
}
```
Hope to receive support in flowable-rest module.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.