| 117 | DrapeRoutine() : m_workerThread(4 /* threads count */) {} |
| 118 | |
| 119 | uint64_t GetNextId() |
| 120 | { |
| 121 | std::lock_guard<std::mutex> lock(m_mutex); |
| 122 | return m_counter++; |
| 123 | } |
| 124 | |
| 125 | void Notify(uint64_t id) |
| 126 | { |
no outgoing calls
no test coverage detected