* Returns all exceptions which have occurred for tasks in this work queue. When a * custom exception callback is set this method will always return an empty list. */
| 164 | * custom exception callback is set this method will always return an empty list. |
| 165 | */ |
| 166 | std::vector<boost::exception_ptr> WorkQueue::GetExceptions() const |
| 167 | { |
| 168 | std::unique_lock<std::mutex> lock(m_Mutex); |
| 169 | |
| 170 | return m_Exceptions; |
| 171 | } |
| 172 | |
| 173 | void WorkQueue::ReportExceptions(const String& facility, bool verbose) const |
| 174 | { |
no outgoing calls
no test coverage detected