flowable / flowable/flowable-engine

Flowable-rest module add/delete multiple instances execution API does not exist

Open
#3,873 0 comments 1 reaction 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.