mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-03-29 20:59:59 +00:00
12 lines
232 B
Plaintext
12 lines
232 B
Plaintext
graph LR
|
|
VS{{"verify sender (SK)"}}
|
|
VR{{"verify recipient (RK)"}}
|
|
|
|
S(sender) -->|msg| VS
|
|
subgraph "server (queue RID, SID)"
|
|
VS --> DB[("storage")]
|
|
DB --> VR
|
|
end
|
|
R(recipient) -->|"1) sub"| VR
|
|
VR -->|"2) msg"| R
|