blob: efb8e25af116bd1e953653d3af7578f2e9a14dc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@startuml "Vehicle Message Header"
participant "UUID Service" as UUID
participant "Feature Application" as FA
participant " Telematics Client" as TC
boundary "Publish" as pub
FA -> FA: Start <$Message>
FA -> UUID: Get Unique Message ID
FA -> FA: Add MessageHeader including Unqique ID to <$Message>
FA -> TC: Request publish to **featuretopic/vehicleID**
TC -> pub: Message published
@enduml
|