vote up 0 vote down star

From what I can tell, in Python and and Django, signals are simply delegated events. Is there anything that functionally differentiates them from the typical notion of events in C#, Java, ActionScript, etc?

flag

4 Answers

vote up 15 vote down check

Actually, "signals" have been around longer than events have. In the earliest usage, a signal was an asynchronous way for processes to get notified that events had occurred. Since Unix is much older than Django (and since a lot of the Django work came from pydispatcher, where the original stuff was done), the name has stuck.

Events are really signals, you might say!

link|flag
+1: Historical context – S.Lott Mar 9 at 9:58
vote up 3 vote down

Signals typically have an association with an operating system facility and events are typically application-defined. In some technology stacks, the OS-level stuff may be hidden well enough that there isn't a difference in the API, but in others perhaps not.

link|flag
vote up 1 vote down

You might as well ask "Why aren't events simply called signals?". Differences in terminology happen.

link|flag
Moreover, I believe that "signals" has precedence. – dmckee Mar 9 at 2:53
It wasn't really a terminology question, I specifically asked if there was some sort of functional reason why the were named differently. – Soviut Mar 9 at 3:11
How is that not a terminology question? "Why don't these things that are the same have the same name?" – Logan Capaldo Mar 9 at 3:22
If you read the body of the question, and not the title, it is very clear, I'm asking whether there's a difference in functionality. – Soviut Mar 9 at 7:09
vote up 2 vote down

Afaik Qt had the first signal/slot implementation. Qt's docs explain the metaphor: "A signal is emitted when a particular event occurs". The distinction is so subtle that the nomenclature has been blurred.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.