![]() |
D++ (DPP)
C++ Discord API Bot Library
|
Handles routing of an event to multiple listeners. More...
Public Member Functions | |
event_router_t ()=default | |
Construct a new event_router_t object. More... | |
void | call (const T &event) const |
Call all attached listeners. Listeners may cancel, by calling the event.cancel method. More... | |
bool | empty () const |
Returns true if the container of listeners is empty, i.e. there is nothing listening for this event right now. More... | |
operator bool () const | |
Returns true if any listeners are attached. More... | |
event_handle | operator() (std::function< void(const T &)> func) |
Attach a lambda to the event, adding a listener. The lambda should follow the signature specified when declaring the event object and should take exactly one parameter derived from event_dispatch_t. More... | |
event_handle | attach (std::function< void(const T &)> func) |
Attach a lambda to the event, adding a listener. The lambda should follow the signature specified when declaring the event object and should take exactly one parameter derived from event_dispatch_t. More... | |
event_handle | co_attach (std::function< dpp::task(T)> func) |
bool | detach (const event_handle &handle) |
Detach a listener from the event using a previously obtained ID. More... | |
Protected Member Functions | |
void | set_warning_callback (std::function< void(const T &)> warning_function) |
Next handle to be given out by the event router. More... | |
Friends | |
class | cluster |
Handles routing of an event to multiple listeners.
Multiple listeners may attach to the event_router_t by means of operator(). Passing a lambda into operator() attaches to the event.
Dispatchers of the event may call the event_router_t::call() method to cause all listeners to receive the event.
The event_router_t::empty() method will return true if there are no listeners attached to the event_router_t (this can be used to save time by not constructing objects that nobody will ever see).
The event_router_t::detach() method removes an existing listener from the event, using the event_handle ID returned by operator().
This class is used by the library to route all websocket events to listening code.
Example:
// Declare an event that takes log_t as its parameter event_router_t<log_t> my_event; // Attach a listener to the event event_handle id = my_event([&](const log_t& cc) { std::cout << cc.message << "\n"; }); // Construct a log_t and call the event (listeners will receive the log_t object) log_t lt; lt.message = "foo"; my_event.call(lt); // Detach from an event using the handle returned by operator() my_event.detach(id);
T | type of single parameter passed to event lambda derived from event_dispatch_t |
|
default |
Construct a new event_router_t object.
|
inline |
Attach a lambda to the event, adding a listener. The lambda should follow the signature specified when declaring the event object and should take exactly one parameter derived from event_dispatch_t.
func | Function lambda to attach to event |
|
inline |
Call all attached listeners. Listeners may cancel, by calling the event.cancel method.
event | Class to pass as parameter to all listeners. |
|
inline |
|
inline |
Detach a listener from the event using a previously obtained ID.
handle | An ID obtained from event_router_t::operator() |
|
inline |
Returns true if the container of listeners is empty, i.e. there is nothing listening for this event right now.
|
inline |
Returns true if any listeners are attached.
This is the boolean opposite of event_router_t::empty().
|
inline |
Attach a lambda to the event, adding a listener. The lambda should follow the signature specified when declaring the event object and should take exactly one parameter derived from event_dispatch_t.
func | Function lambda to attach to event |
|
inlineprotected |
Next handle to be given out by the event router.
Set the warning callback object used to check that this event is capable of running properly
warning_function | A checking function to call |
|
friend |