| 319 | } |
| 320 | |
| 321 | int64_t WsPluginServer::GetQueuingMediaMsgCount() { |
| 322 | int64_t count = 0; |
| 323 | stream_routers_.ApplyAll([&](const auto&, const auto& r) { |
| 324 | count += r->GetQueuingMsgCount(); |
| 325 | }); |
| 326 | return count; |
| 327 | } |
| 328 | |
| 329 | int64_t WsPluginServer::GetQueuingFtMsgCount() { |
| 330 | int count; |
nothing calls this directly
no test coverage detected