I want to create a BMPN diagram wtih parallel tasks.
1- email is received.
2a- if email received informations type 1, do action 1.
2b- if email received informations type 2, do action 2.
2c- if email received informations type 3, do action 3.
One email can contain several pieces of informations :
for example : type 1 + type 2 + type 3 => do action 1 + action 2 + action 3.
an another example : type 1 + type 1 + type 2 => do action 1 + action 1 + action 2.
How can I do this diagram ? I don’t see how to do these actions in parallel.
My acual diagram (problem is to excute in parallel actions after task “Analyse informations”) : diagram1.bpmn (38.9 KB)
Zeebe supports inclusive gateway for forks, which is a simple thing. It does not support it for join, as this is not computable (C7 does not implement it right, for example).
Token simulation won’t support it unless we have a proper working solution in both ways. The purpose of token simulation is not to be en par with Zebee, but to be a BPMN 2.0 spec compliant token simulator and learning tool. Where actual behavior cannot be reasonably implemented we rather not implement anything at all.
Ok, I will replace this inclusive gateway by exculsive gateway during token Simulator tests.
But during the instance running, inclusive gateway will work ?
To simplify my diagram, I try to use events : diagram-test.bpmn (18.2 KB)
When I run token simulator (the start is “Customer informations received” event), the test stops at the first EndEvent. How can I do to link EndEnvent to StartEvent ?
Without using messageFlow :
A EndEvent item can be connected to several StartEnvent items ?
A StartEnvent item can be connected to several EndEvent items ?
A IntermediateEnvent item can be connected to several EndEvent items ?