Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • E Eclipse eTrice
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 43
    • Issues 43
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 4
    • Merge requests 4
  • Deployments
    • Deployments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Eclipse Projects
  • Eclipse eTrice™
  • Eclipse eTrice
  • Issues
  • #1

Closed
Open
Created Feb 15, 2022 by Christian Hilden@childen45hDeveloper

Unexpected bindings for replicated ports

If I have the following structure:

ActorClass A {
  Interface { 
  	Port a[5]: Protocol
  }
}

ActorClass B {
  Interface { 
  	conjugated Port b[2]: Protocol
  }
}


ActorClass C {
  Interface { 
  	Port c: Protocol
  }
}

ActorClass container {
  Structure {
    ActorRef a:A
    ActorRef b:B
    ActorRef c:C
	
    Binding a.a and b.b
    Binding c.c and b.b 

  }
}

I get the following error on the container actor class: port "b.b" is connected to 3 peers but its multiplicity is only 2

While I would expect one connection between c and b and one connection between a and b it seems that two connections between a and b and none between c and b are created. (I know this is even different from the stated warning, but it matches the compiled systems behavior)

Assignee
Assign to
Time tracking

Copyright © Eclipse Foundation, Inc. All Rights Reserved.     Privacy Policy | Terms of Use | Copyright Agent