Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Typical uml diagram for showing events

I have a couple modules. They communicate to each other through events.

What UML diagram would typically be used to show this?

Is there a non uml diagram people use?

Any examples?

like image 394
zachary Avatar asked Oct 27 '11 23:10

zachary


1 Answers

I think you definitely want a sequence diagram to show all the event interaction between modules in sequence. This is the preferred way to represent sequence of asynchronous messages between components

like image 147
lurscher Avatar answered Oct 20 '22 09:10

lurscher