diff options
author | FrancescoFioraEst <francesco.fiora@est.tech> | 2024-02-23 15:50:13 +0000 |
---|---|---|
committer | Francesco Fiora <francesco.fiora@est.tech> | 2024-02-23 16:04:06 +0000 |
commit | 99a61c4ca3cd02424c90894199627843c8d79b1c (patch) | |
tree | 930ee4e8d3154926988ef0812371b2385623154d /docs/clamp/acm/plantuml/system-dialogues/TimeoutParticipant.puml | |
parent | d5c963c689b6280cbc72284a68d19111b0f8a41a (diff) |
Update documentation for timeout in system level dialogues
Issue-ID: POLICY-4936
Change-Id: I525c33f3d8ac0847676f185c5a8173c41cba9aff
Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'docs/clamp/acm/plantuml/system-dialogues/TimeoutParticipant.puml')
-rw-r--r-- | docs/clamp/acm/plantuml/system-dialogues/TimeoutParticipant.puml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/docs/clamp/acm/plantuml/system-dialogues/TimeoutParticipant.puml b/docs/clamp/acm/plantuml/system-dialogues/TimeoutParticipant.puml new file mode 100644 index 00000000..c88cd04b --- /dev/null +++ b/docs/clamp/acm/plantuml/system-dialogues/TimeoutParticipant.puml @@ -0,0 +1,42 @@ +@startuml + +alt "Deploying the instance" + Rest -> "ACM Runtime": Deploy triggered by the user + activate "ACM Runtime" + "ACM Runtime" -> "Participant-intermediary" : [ASYNC] Deploying the instance + deactivate "ACM Runtime" + + activate "Participant-intermediary" + activate Participant + "Participant-intermediary" -> Participant : Create Deploy thread + deactivate "Participant-intermediary" + note right + Deploy thread is stuck + end note +end + +alt "Instance in Timeout" + activate "ACM Runtime" + "ACM Runtime" -> "ACM Runtime" : set instance in Timeout + deactivate "ACM Runtime" +end + +alt "Undeploying the instance" + Rest -> "ACM Runtime": Undeploy triggered by the user + activate "ACM Runtime" + activate "Participant-intermediary" + "ACM Runtime" -> "Participant-intermediary" : [ASYNC] Undeploying the instance + deactivate "ACM Runtime" + "Participant-intermediary" -> Participant : Terminate Deploy thread + deactivate Participant + "Participant-intermediary" -> Participant : Create Undeploy thread + activate Participant + deactivate "Participant-intermediary" + Participant -> "Participant-intermediary" : instance Undeployed + activate "Participant-intermediary" + deactivate Participant + "Participant-intermediary" -> "ACM Runtime" : [ASYNC] instance Undeployed + deactivate "Participant-intermediary" +end + +@enduml |