| 128 | |
| 129 | #ifdef DEBUG_MESSAGE_QUEUE |
| 130 | bool MessageQueue::IsEmpty() const |
| 131 | { |
| 132 | std::lock_guard<std::mutex> lock(m_mutex); |
| 133 | return m_messages.empty() && m_lowPriorityMessages.empty(); |
| 134 | } |
| 135 | |
| 136 | size_t MessageQueue::GetSize() const |
| 137 | { |
no test coverage detected