If you want to express the fact that module A fires event E, which is handled by module B, I suggest a static diagram to show the structure of your architecture.
In particular, I would use a class diagram in which I could draw:
- modules A and B (classes with a stereotype)
- event E (i.e., another class with the stereotype
event
) - association named
subscribe
between B and E - an association named
publish
between A and E.
source share