11-23-2021 07:33 AM
Hello,
I have a problem with finish of the process.
My current end flow looks like this:
I have two last branches. In the Manual Task I am waiting for execution of both branches.
In the service class I am waiting for execution and when both variables are filled up, I want to push frocess further, which should be end. My code looks like this:
public void listen(DelegateExecution delegateExecution, String resultVar1, String resultVar2) { Object variable = delegateExecution.getVariable(resultVar1); Object variable2 = delegateExecution.getVariable(resultVar2); if (variable != null && variable2 != null) { runtimeService.trigger(delegateExecution.getId()); } }
Code executes successfuly, but process is not finished, it stays in the state with red arrow into end event
I tried with Manual task, Receive task, but nothing helps. Is there any other option?
The last idea I have is to put user task, and then complete user task. But this does not look properly, since this is nothing related to user.
Thank you
11-24-2021 08:14 AM
You should join your fork using an exclusive gateway. It ensures both of your synchronized service tasks are completed before forwarding to next task (receive task, in your case).
Hope it helps.
Explore our Alfresco products with the links below. Use labels to filter content by product module.