| 129 | |
| 130 | template <typename Clock, typename Duration> |
| 131 | bool WaitForNotEmpty(const std::chrono::time_point<Clock, Duration>& time) const |
| 132 | { |
| 133 | return m_q.WaitForNotEmpty(time); |
| 134 | } |
| 135 | |
| 136 | private: |
| 137 | SynchronizedQueue<std::function<void ()>> m_q; |
nothing calls this directly
no outgoing calls
no test coverage detected