Skip to content
Snippets Groups Projects
Select Git revision
  • 5188b017947d2cc9675ef88e2df5efea6b0e7a0b
  • dev default protected
  • main protected
  • feature/ros-java-integration
4 results

Test.connect

Blame
  • Test.connect 342 B
    send SenderRoot.A1 ;
    send SenderRoot.A2 ;
    send SenderRoot.A3 ;
    send SenderRoot.A4 ;
    send SenderRoot.InOutput using IntToA ;
    
    receive ReceiverRoot.A ;
    receive ReceiverRoot.UsingWildcardA ;
    receive with add ReceiverRoot.WithAddA ;
    receive with add ReceiverRoot.UsingWildcardWithAddA ;
    
    IntToA maps int i to A {:
        return new A().setID(i);
    :}