Hi,
I used the loop to recycle in the sequence diagram, but I would like to end this loop and start to send a new message to other participants. I have no idea to do it. If someone knew this method, please answer my question.
e.g.
@startuml
participant A
participant B
A -> B: start a loop
loop
alt condition1
"Here I want to end the loop
else condition2
B -> B: some messages
end
end
@enduml
Thank you!