A gallery of all the themes included with PlantUML.
This project is maintained by The-Lum
A Timing Diagram in UML is a specific type of interaction diagram that visualizes the timing constraints of a system. It focuses on the chronological order of events, showcasing how different objects interact with each other over time. Timing diagrams are especially useful in real-time systems and embedded systems to understand the behavior of objects throughout a given period.
See PlantUML Timing Diagram for more information.
@startuml
robust "Web Browser" as WB
concise "Web User" as WU
clock "Clock_1" as C1 with period 100 pulse 15 offset 10
binary "Binary" as B
analog "Analog" as A
WB is Initializing
WU is Absent
@WB
0 is idle
+200 is Processing
+100 is Waiting
WB@0 <-> @50 : {50 ms lag}
@WU
0 is Waiting
+500 is ok
@200 <-> @+150 : {150 ms}
@B
100 is high
@A
0 is 0
100 is 3
300 is 1
@enduml