| 327 | } |
| 328 | |
| 329 | int64_t WsPluginServer::GetQueuingFtMsgCount() { |
| 330 | int count; |
| 331 | ft_routers_.ApplyAll([&](const auto&, const auto& r) { |
| 332 | count += r->GetQueuingMsgCount(); |
| 333 | }); |
| 334 | return count; |
| 335 | } |
| 336 | |
| 337 | std::vector<std::shared_ptr<GrConnectedClientInfo>> WsPluginServer::GetConnectedClientInfo() { |
| 338 | std::vector<std::shared_ptr<GrConnectedClientInfo>> clients_info; |
nothing calls this directly
no test coverage detected