Last active
July 22, 2024 13:08
-
-
Save smileham/26f8baa46c638093aa2b3a049546da6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml Archi Usage | |
!include archi-seq.puml | |
title Archi Print Usage | |
' Define Elements | |
$businessActor("Architect","architect") | |
$applicationComponent("Archi","archi") | |
$applicationFunction("Update\nModel","update") | |
$applicationFunction("Print\nView","print") | |
$systemSoftware("Windows\nPrint\nService","windowsPrint") | |
$equipment("Printer", "printer") | |
' Define Sequence | |
architect->archi ++ | |
archi->update ++ : Make changes | |
$document("Not exactly correct!\nBut you get the idea.","right","update") | |
return Updated Model | |
archi ->print ++ : Click print | |
print -\windowsPrint ++ | |
print --> archi --: Sent to printer | |
windowsPrint -> printer ++ | |
return Complete | |
archi --> architect -- | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Neither, just using Archimate concepts in Puml I'm afraid.