Reputation: 33225
How does Django's event routing system work?
Upvotes: 5
Views: 2092
Reputation: 798686
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.
Upvotes: 18