Hi i want to make a uml diagram with some parallel interactions like this, using plant uml.
But i don't know if it is possible to add the dotted lines between the 'threads'. What i have so far is the following. A
is sending something that is picked up and acted on by b
, c
and d
at the same time. Is it possible to add dotted lines between b
, c
and d
?
group par
activate a
a -> b: doSomething
a -> c: doSomething
a -> d: doSomething
end