| 635 | } |
| 636 | |
| 637 | void event::clear_subscribers() { |
| 638 | |
| 639 | std::scoped_lock its_lock(eventgroups_mutex_); |
| 640 | for (auto& e : eventgroups_) |
| 641 | e.second.clear(); |
| 642 | } |
| 643 | |
| 644 | bool event::has_ref(client_t _client, bool _is_provided) { |
| 645 |
no test coverage detected