I want 2 action paths after while loop with if break

0 votes
asked Aug 14, 2023 in Wanted features by royaad (120 points)

I have the followin plantuml code

@startuml Job Parsing Sequence

<style>

title {

  HorizontalAlignment center

  FontSize 20

  FontColor black

}

</style>

' Start of Activity

title Job Parsing Sequence

skinparam defaultTextAlignment center

start

:Read text;

repeat :**Extract important info**

  if (Parsing is Successful) then (True)

  break

  endif

  -> False;

repeat while (Attempts < 4) is (True) not (False)

->;

:Save file;

stop

@enduml

I want to have 2 paths. 1 for the if break where the file is saved another when the while condition is met and so the process is killed. How to do so?

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...