Skip to content

Commit

Permalink
Update: more info added to backed Readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
mscarceller committed Oct 16, 2020
1 parent ad29e22 commit a3f07ee
Show file tree
Hide file tree
Showing 5 changed files with 444 additions and 12 deletions.
Binary file added Documents/images/kubernetes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/images/uml_joinRoom_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions Documents/uml/joinRoom.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@startuml

title Join Room

(*) --> "joinRoom Message" as jR
note right
User send a "joinRoom Message" with:
- userId
- userName
- userRoom
end note

if "userId already registered" then
-->[No] "joinRoom Process"
if "userName already registered" then
-left> [yes] "request different name" as rN
else
--> [no] "start Chat" as sC
endif
else
-->[Yes] "reconnect Process" as rP
endif

rN -> jR
rP ---> sC
sC --> (*)

@enduml
Loading

0 comments on commit a3f07ee

Please sign in to comment.