I am new to UML/SysMl and I hope you could support me in this.
So, I am trying to pass data between different parts of a block, each part has its own Activity Diagram.
I am able to pass data between those parts through proxy ports:
the problem I am facing is that I want the activity diagram of the receiving part to start only after the reception of data from the sending part.
The current situation is that both activity diagrams are active at the same time.
I tried to use the "Send Action" in the 'sending' side and the "Accept Event Action" in the 'receiving' side. What I understood is that I need to link both to an event, the "Send Action" raises the event and the "Accept Event Action" will catch it and move to the next action.
When I do so, I get an error during the build :
I don't know what I'm doing wrong or if I'm even doing the right approach.