Skip to content

Commit

Permalink
fixed Runtime diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
adriiglz committed Feb 18, 2024
1 parent b410db9 commit 91ab2f2
Showing 1 changed file with 3 additions and 30 deletions.
33 changes: 3 additions & 30 deletions docs/src/06_runtime_view.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ifndef::imagesdir[:imagesdir: ../images]
=== Access to user data via API
* Clients access the users data through an API

[plantuml,"Sequence diagram",png]
[plantuml,"users diagram",png]
----
entity Client
database API as "Users API"
Expand All @@ -20,7 +20,7 @@ API --> Client: Retrieved data
=== Access to questions data via API
* Clients access the questions data through an API

[plantuml,"Sequence diagram",png]
[plantuml,"questions diagram",png]
----
entity Client
database API as "Questions API"
Expand All @@ -31,7 +31,7 @@ API --> Client: Retrieved data
=== Game
* Users can play a Q&A game

[plantuml,"Sequence diagram",png]
[plantuml,"game diagram",png]
----
actor User
entity App
Expand Down Expand Up @@ -76,30 +76,3 @@ There are many notations for describing scenarios, e.g.
See https://docs.arc42.org/section-6/[Runtime View] in the arc42 documentation.
****

=== <Runtime Scenario 1>


* _<insert runtime diagram or textual description of the scenario>_
* _<insert description of the notable aspects of the interactions between the
building block instances depicted in this diagram.>_

It is possible to use a sequence diagram:

[plantuml,"Sequence diagram",png]
----
actor Alice
actor Bob
database Pod as "Bob's Pod"
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice --> Pod: Store route
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
----

=== <Runtime Scenario 2>

=== ...

=== <Runtime Scenario n>

0 comments on commit 91ab2f2

Please sign in to comment.