plantuml activity diagram with parallel split execution joining in reverse order

166 views Asked by At

I have this plant UML diagram with split lines. Now I want to change the notation so that I get the modifications drawn in red.

@startuml
start
split
   :A;
split again
   :B;
split
:C;
split again
:D;
end split
end split
:E;
end
@enduml

enter image description here

In words: A is split off early, later D is split off, then A joins, then D shall join later after E.

Thank you

I have a problem to formulate this with embracing split ... end split tags.

0

There are 0 answers