| 197 | } |
| 198 | |
| 199 | bool UniverseServer::isConnectedClient(ConnectionId clientId) const { |
| 200 | ReadLocker clientsLocker(m_clientsLock); |
| 201 | return m_clients.contains(clientId); |
| 202 | } |
| 203 | |
| 204 | String UniverseServer::clientDescriptor(ConnectionId clientId) const { |
| 205 | ReadLocker clientsLocker(m_clientsLock); |
no test coverage detected