Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PlantUML Macro
@startuml
participant ACM_Runtime
participant Participant

ACM_Runtime -> Participant: [ASYNC] Prime AC Element Types for this AC Type 

loop over AC Element Types in AC Type
  altalt Does the primed Participant ID on this AC Element Type\nmatch my Participant ID
  alt Is this AC Element Type already primed
   ACM_Runtime <- Participant: [ASYNC] WARN: AC Element Type is already primed
  else
   Participant -> Participant: Primes AC Element Type
   activate Participant
   deactivate Participant
   alt AC Element successfully primed
    ACM_Runtime <- Participant: [ASYNC] INFO: AC Element successfully primed
   else
    ACM_Runtime <- Participant: [ASYNC] ERROR: AC Element priming failed
   end
  end
 else
  note left of participant
   ignore this AC Element Type as its for another participant 
  end note
 end
end

@enduml

...