如何在 Camunda-bpm 中结束流程实例?

How to end a Process Instance in Camunda-bpm?

我的bpmn文件如下: Addition.bpmn

我正在使用接收任务以便我可以使用 RuntimeService,我在 sayHello class 中开始我的进程,如下所示:

public void sayHello(ProcessEngine processEngine) {

    try {
        System.out.println("inside postdeploy  ");
        variables.put("a", 2);
        variables.put("b", 5);
        variables.put("c", 0);

ProcessInstance instance=  processEngine.getRuntimeService().startProcessInstanceByKey("Process_2", variables);


variables.put("c",processEngine.getRuntimeService().getVariable(instance.getId(), "c"));

        Execution execution = processEngine.getRuntimeService().createExecutionQuery()
                  .processInstanceId(instance.getId())
                  .activityId("ReceiveTask_16nulbx")
                  .singleResult();

        processEngine.getRuntimeService().signal(execution.getId());

我在计算器 class 中设置了我的 c 变量,它由我的服务任务实现如下:

public class Calculator implements JavaDelegate {

public void execute(DelegateExecution exe) throws Exception {

    System.out.println("Inside calculator again");

    Integer x = (Integer) exe.getVariable("a");
    Integer y = (Integer) exe.getVariable("b");
    int add = x+y;
    System.out.println("Addition is"+add);
    exe.setVariable("c", add);

}

问题是我的流程实例在此之后没有结束。 我的问题是如何在获取我的 c 变量后结束我的 Process 实例?

问题是你的流程实例对象在接收任务完成后不会更新。 如果要检查实例是否结束,则必须查询流程实例。 使用以下语句检查实例是否仍然存在:

ProcessInstance processInstance = processEngine
  .getRuntimeService()
  .createProcessInstanceQuery()
  .processInstanceId(processInstanceId)
  .singleResult();

如果 processInstancenull 则实例已完成。