| 140 | } |
| 141 | |
| 142 | void eventgroupinfo::remove_event(const std::shared_ptr<event>& _event) { |
| 143 | |
| 144 | if (_event == nullptr) { |
| 145 | VSOMEIP_ERROR_P << "Received ptr is null"; |
| 146 | return; |
| 147 | } |
| 148 | |
| 149 | std::scoped_lock its_lock(events_mutex_); |
| 150 | events_.erase(_event); |
| 151 | } |
| 152 | |
| 153 | reliability_type_e eventgroupinfo::get_reliability() const { |
| 154 | return reliability_; |
no outgoing calls
no test coverage detected