Created
November 7, 2014 12:07
-
-
Save nelsonjin/28f3c1592d1515e289ec to your computer and use it in GitHub Desktop.
server_example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title 消息框架 | |
package "接入层" { | |
component [Proxy] as proxy | |
component [Logic] as logic | |
component [Notify] as notify | |
} | |
proxy -down-> logic | |
notify -up-> proxy | |
proxy -up- user | |
package "逻辑层" { | |
[SendSvr] as s | |
[PushSvr] as p | |
[ReceiverSvr] as r | |
} | |
database "Storage\n" { | |
[DATA & Index] as d | |
} | |
logic -down-> s | |
s -down-> d | |
s -right-> p | |
p -up-> notify | |
logic --down--> r | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment