| 119 | } |
| 120 | |
| 121 | bool remote_subscription::has_client() const { |
| 122 | std::scoped_lock its_lock(mutex_); |
| 123 | return (clients_.size() > 0); |
| 124 | } |
| 125 | |
| 126 | bool remote_subscription::has_client(const client_t _client) const { |
| 127 | std::scoped_lock its_lock(mutex_); |
no test coverage detected