From 709ac10c7a846557e8c9d5d9d5a3e07e71efb023 Mon Sep 17 00:00:00 2001 From: FrancescoFioraEst Date: Tue, 2 Jul 2024 16:56:55 +0100 Subject: Add sync message in system dialogs in docs Issue-ID: POLICY-5038 Change-Id: Ie8bd99f5159258ff639a01cdbdae9f0ca642efe0 Signed-off-by: FrancescoFioraEst --- .../plantuml/system-dialogues/SuccessAcmResult.puml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml (limited to 'docs/clamp/acm/plantuml/system-dialogues/SuccessAcmResult.puml') 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 -- cgit