Outgoing transition

Hi all,

I would like to test this BPMN software and I read the Flowable DOCS. I would like to find some examples as I don’t found how to use named transition. When I claim a task I would like to follow one specific transition. It is possible ? Or I have to expose variable and model the decision node ?

Thanks Mila

The ‘proper’ bpmn way would indeed to set a process variable and have an exclusive gateway afterwards with outgoing sequence flow with various conditions.

Alternatively, you can implement an ActivityBehavior and call the DelegateHelper.leaveDelegate method, passing in the sequence flow id you want the process instance to follow : https://github.com/flowable/flowable-engine/blob/7d1164140b54690851eb6a15b0440c695aac51fd/modules/flowable-engine/src/main/java/org/flowable/engine/delegate/DelegateHelper.java#L51