File: ex49.signalling

package info (click to toggle)
msc-generator 8.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180,484 kB
  • sloc: cpp: 129,931; yacc: 23,655; ansic: 7,464; sh: 5,026; makefile: 948
file content (14 lines) | stat: -rw-r--r-- 421 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
##Parallel elements
##parallel element side-by-side
##Use the 'parallel' keyword in front of an element to allow subsequent elements be laid out besides it. By default (without 'parallel') subsequent elements have to be at least a bit lower than prior ones.
C: Client;
S: Server;
B: Backend;

parallel B--B: State;
C->S: Remove Req;
S->B: Remove Req;
S<-B: Ack;
parallel B--B: No State;
C<-S: Ack;
C--C: Now we\nhave it;