Skip to content

Instantly share code, notes, and snippets.

@lyingdragon
Last active April 18, 2018 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyingdragon/bdff707931a808f14dc3a8b779ff8d98 to your computer and use it in GitHub Desktop.
Save lyingdragon/bdff707931a808f14dc3a8b779ff8d98 to your computer and use it in GitHub Desktop.
Example for PlantUML
@startuml;
actor User;
participant "First Class" as A;
participant "Second Class" as B;
participant "Last Class" as C;
User -> A: DoWork;
activate A;
A -> B: Create Request;
activate B;
B -> C: DoWork;
activate C;
C --> B: WorkDone;
destroy C;
B --> A: Request Created;
deactivate B;
A --> User: Done;
deactivate A;
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment