diff options
author | 2024-08-19 10:11:56 +0100 | |
---|---|---|
committer | 2024-08-20 14:46:37 +0000 | |
commit | ea9018a2a5c5596be978b7a8dff89b52442d23ab (patch) | |
tree | e752488b5f565a147d06a10feca37ec114529423 /docs/clamp/acm/plantuml/system-dialogues/ReviewResponseStored.puml | |
parent | c6a838fe921454dd8069ab8126d4c710a1b5397c (diff) |
Update docs for prepare review migration-precheck in ACM runtime
Update docs for prepare, review, migration-precheck and using stage
in ACM states and ACM runtime.
Issue-ID: POLICY-5109
Change-Id: I059a57d406f9588ef11a694882e7324dad643805
Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'docs/clamp/acm/plantuml/system-dialogues/ReviewResponseStored.puml')
-rw-r--r-- | docs/clamp/acm/plantuml/system-dialogues/ReviewResponseStored.puml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/clamp/acm/plantuml/system-dialogues/ReviewResponseStored.puml b/docs/clamp/acm/plantuml/system-dialogues/ReviewResponseStored.puml new file mode 100644 index 00000000..13287e61 --- /dev/null +++ b/docs/clamp/acm/plantuml/system-dialogues/ReviewResponseStored.puml @@ -0,0 +1,19 @@ +@startuml + +participant "ACM Runtime" +database "ACM Database" +participant "Participant Replica 1" +participant "Participant Replica 2" + +"ACM Runtime" <- "Participant Replica 1": [ASYNC] Review Automation Composition Element \nInstance Response +"ACM Runtime" -> "ACM Database": Store Automation Composition Element Instance \nResponse Information + +alt Is Review AC Element Instance Completed? + "ACM Runtime" -> "ACM Database": Set AC Element Instance SubState as NONE + alt Are all the other AC Element Instances in this AC Instance in state NONE? + "ACM Runtime" -> "ACM Database": Set AC Instance SubState as NONE + "ACM Runtime" -> "Participant Replica 2": [ASYNC] Send sync message + end +end + +@enduml |