Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

TBD - The proposal here is that membership is another module that is hidden behind the messaging layer as far as the rest of the system is concerned. The membership layer has it's own interface that should hide its internals from the messaging layer. Advisors are lumped in here to reduce the complexity of the high level graph.

 

PlantUML
@startuml
title Messaging Packages
hide members
hide circle
class Messaging
package OtherComponents {
  class Regions
  class WAN
}
Advisors --> Messaging
Messaging --> Membership
OtherComponents --> Advisors
OtherComponents --> Messaging
@enduml
 

...