| 344 | } |
| 345 | |
| 346 | void PluginNetEventRouter::PostIpcMessage(const std::string& msg) { |
| 347 | auto task_msg = AppMessageMaker::MakeTaskMessage([=, this]() mutable { |
| 348 | this->app_->PostIpcMessage(msg); |
| 349 | }); |
| 350 | app_->PostGlobalAppMessage(std::move(task_msg)); |
| 351 | } |
| 352 | |
| 353 | void PluginNetEventRouter::ProcessClientStatistics(std::shared_ptr<Message>&& msg) { |
| 354 | auto& cst = msg->client_statistics(); |
nothing calls this directly
no test coverage detected