Activate multiple times

+2 votes
asked Nov 24, 2014 in Bug by krasa (820 points)
Hello, why is this not possible? I deactivated Alice, so it should be possible to activate it again.
 
@startuml
activate Alice
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
deactivate Alice 
== next case==
activate Alice
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
deactivate Alice 
@enduml
 

1 Answer

0 votes
answered Feb 26, 2021 by The-Lu (63,920 points)
selected Feb 26, 2021 by krasa
 
Best answer

Hello K.,

Just to answer to an old unanswered question (and point out similar answers).

Here are some answers (Thanks @Serge Wenger Work):

With adding:

== next case==
Alice -[hidden]> Bob

We observe the expected result:


[See code on PlantUML server]

If that can help,
Regards,
Th.

...