Skip to content

Commit

Permalink
refactor: ♻️ renamed some messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rickkoekkoek committed Jan 9, 2024
1 parent 9d73bbf commit a25d896
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tdd/startup-phase-sequence.puml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ activate A
A -> C: LoadSplashScreenOrAppComponent()
activate C
C --> A: ReturnSplashScreenOrAppComponent : Splash Screen Rendered
A --> U: RenderSplashScreenOrAppComponent
A --> U: RenderSplashScreenOrAppToUser()
deactivate C
A -> B: InitializeAppProvidersComponent()
activate B
Expand All @@ -25,20 +25,20 @@ U -> A: StartBackgroundCollection()
activate A
A -> BC: InitializeBackgroundCollectionComponentWithinApp()
activate BC
BC --> A: BackgroundCollectionCompleted()
A --> U: RenderBackgroundCollectionComponentWithinApp()
BC --> A: RenderBackgroundCollectionInApp()
A --> U: RenderBackgroundCollectionToUser()
deactivate BC
U -> A: TutorialStart()
A -> T: InitializeTutorialComponent()
activate T
T --> A: TutorialStarted()
A --> U: RenderTutorialComponentWithinApp()
T --> A: RenderTutorialComponentWithinApp()
A --> U: RenderTutorialToUser()
deactivate T

A -> D: InitializeHomeScreen()
activate D
D --> A: ReturnHomeScreenComponent : Home Screen Initialized
A --> U: RenderHomeScreenComponentWithinApp : Home Screen Rendered
A --> U: RenderHomeScreenComponentToUser : Home Screen Rendered
deactivate D
deactivate A

Expand Down

0 comments on commit a25d896

Please sign in to comment.