blob: 2f9523fcbd7fe1a82debde1bc1396ec85e97e057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@startuml
participant "ACM Runtime"
participant Participant
participant "Participant Api"
alt "instance Id and Composition Ids exist"
"ACM Runtime" -> Participant : [ASYNC] Migration message from source to target composition
Participant -> "Participant Api" : Migrate AC Element
"Participant Api" -> Participant : AC Element Migrated
Participant -> "ACM Runtime" : [ASYNC] Migration completed
note right
Returns AUTOMATION_COMPOSITION_STATE_CHANGE message.
end note
end
@enduml
|