blob: a75908bbebaebb1f9232104c61ee013b52a9cdd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@startuml
participant "ACM Runtime"
database "ACM Database"
participant "Participant Replica 1"
participant "Participant Replica 2"
"ACM Runtime" <- "Participant Replica 1": [ASYNC] Result of Depriming of AC Element Type
"ACM Runtime" -> "ACM Database": Record result of AC Element Type Depriming
alt Is AC Element Type Deprimed?
alt Have all the other AC Element Types in this AC Type been Deprimed?
"ACM Runtime" -> "ACM Database": Set AC Type state as COMMISSIONED
"ACM Runtime" -> "Participant Replica 2": [ASYNC] Send sync message
end
end
@enduml
|