I have any class Initiator and target. In initiator, I have a thread, a method and a inout port, method sensitive with that port and thread is used to write to this port.
In class Target, I have a method, that sensitive with inout port. In the top class. I instanced 2 class above and connected the inout port.
I expected that in initiator, when thread writes to inout port, i expected only method of target is call but both method of Initiator and Target was called.