I have a need to activate multiple times on an entity of a sequence diagram.
@startuml
title "Example"
entity A
entity B
entity C
A -> B
activate B
C -> B
activate B
B -> A
deactivate B
B -> C
deactivate B
@enduml
This causes a problem as the activations are a stack and shows up incorrectly. I'd like to be able to name them similar to the following:
@startuml
title "Example"
entity A
entity B
entity C
A -> B
activate B as AB
C -> B
activate B as CB
B -> A
deactivate AB
B -> C
deactivate CB
@enduml
This way I get the correct activation line.