aboutsummaryrefslogtreecommitdiffstats
path: root/docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml
diff options
context:
space:
mode:
authorFrancescoFioraEst <francesco.fiora@est.tech>2024-07-02 16:56:55 +0100
committerFrancescoFioraEst <francesco.fiora@est.tech>2024-07-03 09:28:49 +0100
commit709ac10c7a846557e8c9d5d9d5a3e07e71efb023 (patch)
treeecbb9c5c633608b8cf6634b97676aea3ec89b7c8 /docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml
parentce24502fb2a5e932b17acb32cc05eb1e47bbf06b (diff)
Add sync message in system dialogs in docs
Issue-ID: POLICY-5038 Change-Id: Ie8bd99f5159258ff639a01cdbdae9f0ca642efe0 Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml')
-rw-r--r--docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml b/docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml
new file mode 100644
index 00000000..69fde3bb
--- /dev/null
+++ b/docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml
@@ -0,0 +1,21 @@
+@startuml
+participant "ACM Runtime"
+participant "Participant Replica 1"
+participant "Participant API Replica 1"
+participant "Participant Replica 2"
+
+"ACM Runtime" -> "Participant Replica 1": [ASYNC] Trigger an ACM operation for this AC Instance
+alt Does the primed Participant ID on this AC Element Instance match my Participant ID?
+ alt Does this AC Element Instance exist?
+ "Participant Replica 1" -> "ACM Runtime": [ASYNC] AC Element does not exist
+ end
+ "Participant Replica 1" -> "Participant API Replica 1": Perform ACM operation
+ "Participant API Replica 1" -> "Participant Replica 1": ACM operation success Response
+ "Participant Replica 1" -> "ACM Runtime": [ASYNC] INFO: ACM operation completed successfully
+ note left of "Participant Replica 1"
+ This returns the response message with StateChangeResult 'NO_ERROR'
+ end note
+"ACM Runtime" -> "Participant Replica 2": [ASYNC] Send sync message
+end
+
+@enduml