File: edge_type.diag

package info (click to toggle)
seqdiag 0.9.5%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 460 kB
  • ctags: 251
  • sloc: python: 1,962; makefile: 11
file content (20 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  // normal edge
  A -> B [label = "normal edge"];

  // dotted edge
  B --> C [label = "dotted edge"];

  // asynchronus edge
  A ->> B [label = "asynchronus edge"];
  B -->> C [label = "asynchronus dotted edge"];

  // return edge
  B <- C [label = "return edge"];
  A <-- B [label = "return dotted edge"];
  B <<- C [label = "return asynchronus edge"];
  A <<-- B [label = "return asynchronus dotted edge"];

  // self referenced edge
  A -> A [label = "self referenced edge"];
}