| 382 | } |
| 383 | |
| 384 | void eventgroupinfo::clear_remote_subscriptions() { |
| 385 | std::scoped_lock its_lock(subscriptions_mutex_); |
| 386 | subscriptions_.clear(); |
| 387 | remote_subscribers_count_.clear(); |
| 388 | } |
| 389 | |
| 390 | std::set<std::shared_ptr<endpoint_definition>> eventgroupinfo::get_unicast_targets() const { |
| 391 | std::set<std::shared_ptr<endpoint_definition>> its_targets; |
no test coverage detected