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
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.
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.