@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