-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add documentation, to fix workbench debugger configuration under linux
- Loading branch information
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@startuml | ||
'https://plantuml.com/sequence-diagram | ||
|
||
header Message Bus | ||
title Bootstrapping the Client <-> Server Connection | ||
|
||
autonumber | ||
|
||
CLIENT -> SERVER: Authenticate | ||
CLIENT <-- SERVER: Send Token | ||
|
||
CLIENT -> SERVER: Heartbeat | ||
SERVER --> SERVER: Register-Client/Keep-Client-Alive | ||
note right | ||
register client and mark alive for x seconds | ||
if no hearbeat arrives after x seconds, mark client as dead | ||
end note | ||
|
||
SERVER --> SERVER: create messages for client (with ID) | ||
|
||
CLIENT -> SERVER: Request Messages since {time} for {ID} | ||
CLIENT <-- SERVER: Response with latest messages after requested time for client-ID | ||
note right | ||
serve from buffer | ||
end note | ||
|
||
|
||
|
||
|
||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.