How do Django signals work?
How does Djan开发者_JAVA技巧go's event routing system work?
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.
You may find the documentation helpful.
精彩评论