Last active
December 19, 2015 14:29
-
-
Save hjerpbakk/5969259 to your computer and use it in GitHub Desktop.
Example sequence diagram from http://hjerpbakk.com/blog/2013/7/10/easy-online-uml-sequence-diagrams.html
This file contains hidden or 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
title AsyncMethodCaller | |
participant "View Model" as vm | |
participant "Service" as service | |
vm -> service: CallMethodAndContinue | |
activate vm | |
activate service | |
alt Work completed | |
service -> vm: continueWith | |
else Exception occurred | |
service -> vm: failWith | |
end | |
deactivate service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment