MCPcopy Create free account
hub / github.com/RGAA-Software/GoDesk / CallbackEvent

Method CallbackEvent

src/client/plugin_interface/ct_plugin_interface.cpp:180–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178 }
179
180 void ClientPluginInterface::CallbackEvent(const std::shared_ptr<ClientPluginBaseEvent>& event) {
181 if (!event_cbk_) {
182 return;
183 }
184 PostWorkTask([=, this]() {
185 event_cbk_(event);
186 });
187 }
188
189 void ClientPluginInterface::CallbackEventDirectly(const std::shared_ptr<ClientPluginBaseEvent>& event) {
190 if (event_cbk_) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected