This might clear up exactly how Pubsub relates to signals: http://pubsub.sourceforge.net/apidocs/concepts.html
Pubsub facilitates the decoupling of components (callables, modules, packages) within an application. It does this by:
- Allowing parts of the application to send messages to “the rest of the application” without having to know
- if the messages will be handled:
- perhaps the message will be ignored completely,
- or handled by a many different parts of the application;
- how the messages will be handled:
- what will be done with the message and its contents;
- in what order any given message will be sent to the rest of the application;
- Allowing parts of the application to receive and handle messages from “the rest of the application” without having to know who sent the messages.
A listener is “a part of the application that wants to receive messages”. A listener subscribes to one or more topics. A sender is any part of the application that asks Pubsub to send a message of a given topic. The sender provides data, if any. Pubsub will send the message, including any data, to all listeners of the message’s topic.