satoru
satoru

Reputation: 33225

How do Django signals work?

How does Django's event routing system work?

Upvotes: 5

Views: 2092

Answers (2)

Saff
Saff

Reputation: 963

You may find the documentation helpful.

Upvotes: 1

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

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

Related Questions