| 84 | } |
| 85 | |
| 86 | void offer() { |
| 87 | std::scoped_lock its_lock(notify_mutex_); |
| 88 | app_->offer_service(SAMPLE_SERVICE_ID, SAMPLE_INSTANCE_ID); |
| 89 | is_offered_ = true; |
| 90 | notify_condition_.notify_one(); |
| 91 | } |
| 92 | |
| 93 | void stop_offer() { |
| 94 | app_->stop_offer_service(SAMPLE_SERVICE_ID, SAMPLE_INSTANCE_ID); |
nothing calls this directly
no test coverage detected