views:

68

answers:

2

How does Django's event routing system work?

+1  A: 

You may find the documentation helpful.

Saff
A: 

Django signals are synchronous. The handlers are executed as soon as the signal is fired, and control returns only when all appropriate handlers have finished.

Ignacio Vazquez-Abrams