| 328 | } |
| 329 | |
| 330 | void event::notify_one(client_t _client, const std::shared_ptr<endpoint_definition>& _target) { |
| 331 | |
| 332 | if (_target) { |
| 333 | std::scoped_lock its_lock(mutex_); |
| 334 | notify_one_unlocked(_client, _target); |
| 335 | } else { |
| 336 | VSOMEIP_WARNING_P << "Notifying " << hex4(get_service()) << "." << hex4(get_instance()) << "." << hex4(get_event()) |
| 337 | << " failed. Target undefined"; |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | void event::notify_one_unlocked(client_t _client, const std::shared_ptr<endpoint_definition>& _target) { |
| 342 |
no test coverage detected