Skip to content

Instantly share code, notes, and snippets.

@dornad
Created September 8, 2017 03:17
Show Gist options
  • Select an option

  • Save dornad/93d61363182fe844da3957eccec880fd to your computer and use it in GitHub Desktop.

Select an option

Save dornad/93d61363182fe844da3957eccec880fd to your computer and use it in GitHub Desktop.
@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