Skip to content

Commit

Permalink
Add a diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
qurben committed Apr 7, 2020
1 parent f52fe6a commit c3cd962
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Binary file added docs/Node.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions docs/Node.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@startuml

() Client


package "Node" {
Client -right-> [ExternalServer]

[InternalClient] --> [InternalServer] : HTTP
[InternalClient] -> [ValueRepository]
[InternalServer] -> [ValueRepository] : use
[ExternalServer] - [InternalClient]
[InternalClient] -> [DistributedHashTable] : use
}



package "Other Nodes" {
[InternalServer] as OtherInternal
[ValueRepository] as OtherRepository

OtherInternal --> OtherRepository
InternalClient --> OtherInternal : HTTP
}

@enduml

0 comments on commit c3cd962

Please sign in to comment.