-4

I have a problem When I use two or more pools in the same process diagram in Camunda process model, the simulation does not work well. In particular, it seems that tokens do not pass through the message flow and so the two pools work separately and not as well as a collaboration diagram.

How can I do to simulate a collaboration diagram?

Thanks

  • Which simulation are you talking about? – thorben May 16 '17 at 10:58
  • It is about the execution of the process in the camunda platform. In particular, when the process has two or more pools. the problem is that tokens do not pass through the message flow and so the two pools work separately and not as a collaboration diagram. thanks. – T. Chahrazed May 17 '17 at 12:26

1 Answers1

2

In Camunda, you need to implement a message throw event like you would implement a service task, that means by providing code that delivers the message. There is no default delivery of messages. The engine ignores message connections in a collaboration diagram.

Resources to read:

thorben
  • 1,577
  • 8
  • 14