D++ (DPP)
C++ Discord API Bot Library
|
Base event parameter struct. Each event you receive from the library will have its parameter derived from this class. The class contains the raw event data, and a pointer to the current shard's dpp::discord_client object. You can also use this object to cancel the current event, meaning that any listeners after yours do not get notified of the current event if you call it. More...
#include <dispatcher.h>
Public Member Functions | |
event_dispatch_t ()=default | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (const event_dispatch_t &rhs)=default | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (event_dispatch_t &&rhs)=default | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (discord_client *client, const std::string &raw) | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (discord_client *client, std::string &&raw) | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t & | operator= (const event_dispatch_t &rhs)=default |
Copy another event_dispatch_t object. More... | |
event_dispatch_t & | operator= (event_dispatch_t &&rhs)=default |
Move from another event_dispatch_t object. More... | |
virtual | ~event_dispatch_t ()=default |
Destroy an event_dispatch_t object Protected because this object is to be derived from. More... | |
const event_dispatch_t & | cancel_event () const |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called. More... | |
event_dispatch_t & | cancel_event () |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called. More... | |
bool | is_cancelled () const |
Returns true if the event is cancelled. Note that event cancellation is a thread local state, and not stored in the object (because object which can be cancelled is const during the event, and cannot itself contain the changeable state). More... | |
Public Attributes | |
std::string | raw_event = {} |
Raw event data. If you are using json on your websocket, this will contain json, and if you are using ETF as your websocket protocol, it will contain raw ETF data. More... | |
discord_client * | from = nullptr |
Shard the event came from. Note that for some events, notably voice events, this may be nullptr. More... | |
bool | cancelled = false |
Whether the event was cancelled using cancel_event(). More... | |
Base event parameter struct. Each event you receive from the library will have its parameter derived from this class. The class contains the raw event data, and a pointer to the current shard's dpp::discord_client object. You can also use this object to cancel the current event, meaning that any listeners after yours do not get notified of the current event if you call it.
|
default |
Construct a new event_dispatch_t object.
|
default |
Construct a new event_dispatch_t object.
rhs | event_dispatch_t object to copy from |
|
default |
Construct a new event_dispatch_t object.
rhs | event_dispatch_t object to move from |
dpp::event_dispatch_t::event_dispatch_t | ( | discord_client * | client, |
const std::string & | raw | ||
) |
Construct a new event_dispatch_t object.
client | The shard the event originated on. May be a nullptr, e.g. for voice events |
raw | Raw event data as JSON or ETF |
dpp::event_dispatch_t::event_dispatch_t | ( | discord_client * | client, |
std::string && | raw | ||
) |
Construct a new event_dispatch_t object.
client | The shard the event originated on. May be a nullptr, e.g. for voice events |
raw | Raw event data as JSON or ETF |
|
virtualdefault |
Destroy an event_dispatch_t object Protected because this object is to be derived from.
event_dispatch_t & dpp::event_dispatch_t::cancel_event | ( | ) |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called.
const event_dispatch_t & dpp::event_dispatch_t::cancel_event | ( | ) | const |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called.
bool dpp::event_dispatch_t::is_cancelled | ( | ) | const |
Returns true if the event is cancelled. Note that event cancellation is a thread local state, and not stored in the object (because object which can be cancelled is const
during the event, and cannot itself contain the changeable state).
|
default |
Copy another event_dispatch_t object.
rhs | The event to copy from |
|
default |
Move from another event_dispatch_t object.
rhs | The event to move from |
|
mutable |
Whether the event was cancelled using cancel_event().
discord_client* dpp::event_dispatch_t::from = nullptr |
Shard the event came from. Note that for some events, notably voice events, this may be nullptr.
std::string dpp::event_dispatch_t::raw_event = {} |
Raw event data. If you are using json on your websocket, this will contain json, and if you are using ETF as your websocket protocol, it will contain raw ETF data.