Book a Demo

Author Topic: Fork and Join transition  (Read 3124 times)

Seth

  • EA Novice
  • *
  • Posts: 12
  • Karma: +0/-0
    • View Profile
Fork and Join transition
« on: February 18, 2022, 12:42:49 am »
hello all, i'm having trouble with the simulation of a state machine. in short i have 2 triggers that join from different  states, but once the sim gets to the join, it doesn't follow the transition path out of the join to the penultimate and then final state...

any ideas?

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Fork and Join transition
« Reply #1 on: February 18, 2022, 02:04:22 am »
A join waits for all incoming transitions before it continues.

You might need to use a merge instead of a join if that is not what you intended.

Geert

Seth

  • EA Novice
  • *
  • Posts: 12
  • Karma: +0/-0
    • View Profile
Re: Fork and Join transition
« Reply #2 on: February 18, 2022, 09:29:20 pm »
A join waits for all incoming transitions before it continues.

You might need to use a merge instead of a join if that is not what you intended.

Geert

hi Geert, thanks for that, that indeed was the issue then.