Skip to content

Commit

Permalink
Improve numbering for simple_flow.uml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyErmilov committed May 29, 2021
1 parent e55061f commit 8f313dc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions documentation/simple_flow.puml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
@startuml
'https://plantuml.com/sequence-diagram

autonumber

participant GetUsers << (M,#ADD1B2) >>
participant "QueryCache<GetUsers>" << (M,#ADD1B2) >>
participant CacheActor
Expand All @@ -11,6 +9,8 @@ participant DatabaseActor

== First request ==

autonumber 1

GetUsers -> "QueryCache<GetUsers>": into_cache()
activate "QueryCache<GetUsers>"
"QueryCache<GetUsers>" --> CacheActor: send()
Expand All @@ -35,6 +35,8 @@ deactivate "QueryCache<GetUsers>"

== Second request ==

autonumber 1

GetUsers -> "QueryCache<GetUsers>": into_cache()
activate "QueryCache<GetUsers>"
"QueryCache<GetUsers>" --> CacheActor: send()
Expand Down

0 comments on commit 8f313dc

Please sign in to comment.