| 49 | } |
| 50 | |
| 51 | List<ConnectionId> ChatProcessor::clients() const { |
| 52 | RecursiveMutexLocker locker(m_mutex); |
| 53 | return m_clients.keys(); |
| 54 | } |
| 55 | |
| 56 | bool ChatProcessor::hasClient(ConnectionId clientId) const { |
| 57 | RecursiveMutexLocker locker(m_mutex); |
no test coverage detected