| 79 | std::unique_ptr<Service> m_service; |
| 80 | |
| 81 | void NotifyException(std::exception_ptr exception) override |
| 82 | { |
| 83 | std::unique_lock ul(m_queueLock); |
| 84 | m_msgQueue.emplace(MessageType::Exception, exception); |
| 85 | m_queueCV.notify_one(); |
| 86 | } |
| 87 | |
| 88 | void NotifyExit() override |
| 89 | { |
no outgoing calls
no test coverage detected