Not for direct use, provides the power behind both signals and slots. More...
#include <sigslot.hpp>
Public Types | |
typedef std::map< std::string, const Subscribers * > | PublicationMap |
Stores publishing topics and their followers. More... | |
typedef Topic< Data >::Subscribers | Subscribers |
A list of subscribers (slots) to a given topic. More... | |
Public Member Functions | |
void | connectSignal (const std::string &topic) |
Connect a signal to the specified topic. More... | |
void | connectSlot (const std::string &topic) |
Connect a slot to the specified topic. More... | |
void | disconnect () |
Disconnect the sigslot from all topics. More... | |
void | disconnect (const std::string &topic) |
Disconnect the sigslot from the specified topic. More... | |
void | emit (Data data) |
Emit a signal along with the specified data. More... | |
void | process (Data data) |
Process the callback function loaded into this sigslot. More... | |
SigSlot () | |
SigSlot (void(*f)(Data)) | |
template<typename C > | |
SigSlot (void(C::*f)(Data), C &c) | |
const std::set< std::string > & | subscribedTopics () |
~SigSlot () | |
Disconnects the sigslot completely. More... | |
Private Attributes | |
UnaryFunction< Data, void > * | function |
Mutex | mutex |
unsigned int | number_of_handles |
unsigned int | processing_count |
PublicationMap | publications |
std::set< std::string > | subscriptions |
Not for direct use, provides the power behind both signals and slots.
This is the workhorse for both signals and slots, providing the implementation for all the functions necessary by both types of frontends.
Definition at line 52 of file sigslot.hpp.
typedef std::map<std::string, const Subscribers*> ecl::SigSlot< Data >::PublicationMap |
Stores publishing topics and their followers.
Definition at line 66 of file sigslot.hpp.
typedef Topic<Data>::Subscribers ecl::SigSlot< Data >::Subscribers |
A list of subscribers (slots) to a given topic.
Definition at line 65 of file sigslot.hpp.
|
inline |
Used only by signals where the function callback automatically defaults to the emit() function.
Definition at line 75 of file sigslot.hpp.
|
inline |
Used by slots loading global or static functions.
f | : the global/static function. |
Definition at line 83 of file sigslot.hpp.
|
inline |
Used by slots loading a member function.
f | : the member function to load. |
c | : the instance for the member function's class. |
C | : the member function's class type. |
Definition at line 94 of file sigslot.hpp.
|
inline |
Disconnects the sigslot completely.
This is a rather elaborate process, it must first disconnect from any signals to ensure no new callbacks are instantiated, then check to see that there are no callbacks actually running, block if so, then finalise any deletions.
Definition at line 105 of file sigslot.hpp.
|
inline |
Connect a signal to the specified topic.
If the topic doesn't exist, it will be created and the signal connected. If it does exist, it will connect with a set of slots also currently linked to the topic.
Definition at line 152 of file sigslot.hpp.
|
inline |
Connect a slot to the specified topic.
If the topic doesn't exist, it will be created and the slot connected. If it does exist, it will pass on its link details to any signals also connected to the topic.
Definition at line 170 of file sigslot.hpp.
|
inline |
Disconnect the sigslot from all topics.
This completely disconnects the sigslot.
Definition at line 191 of file sigslot.hpp.
|
inline |
Disconnect the sigslot from the specified topic.
Definition at line 181 of file sigslot.hpp.
|
inline |
Emit a signal along with the specified data.
This is used by signals when emitting to slots.
Definition at line 120 of file sigslot.hpp.
|
inline |
Process the callback function loaded into this sigslot.
This is used by slots with their loaded functions or relaying signals with their emit() methods.
Definition at line 137 of file sigslot.hpp.
|
inline |
Definition at line 204 of file sigslot.hpp.
|
private |
Definition at line 213 of file sigslot.hpp.
|
private |
Definition at line 207 of file sigslot.hpp.
|
private |
Definition at line 209 of file sigslot.hpp.
|
private |
Definition at line 208 of file sigslot.hpp.
|
private |
Definition at line 211 of file sigslot.hpp.
|
private |
Definition at line 210 of file sigslot.hpp.