Slanted lines in sequence diagram?

+1 vote
asked Sep 12, 2017 in To be sorted by anonymous

Is it possible to get slanted horizontal lines in sequence diagram?
 

See here http://www.mcternan.me.uk/mscgen/img/example1.png

 

I'd like to outline, that the operation is taking some time (e.g. sending a message over the internet).

1 Answer

0 votes
answered Jan 25, 2018 by Anthony-Gaudino (5,720 points)

It seems it's currently not possible, you may use the delay instead.

Ex:

@startuml

Alice -> Bob: Authentication Request
...
Bob --> Alice: Authentication Response
...5 minutes latter...
Bob --> Alice: Bye !

@enduml
...