| 21 | { } |
| 22 | |
| 23 | bool EventQueue::CanProcessEvent(const String& type) const |
| 24 | { |
| 25 | std::unique_lock<std::mutex> lock(m_Mutex); |
| 26 | |
| 27 | return m_Types.find(type) != m_Types.end(); |
| 28 | } |
| 29 | |
| 30 | void EventQueue::ProcessEvent(const Dictionary::Ptr& event) |
| 31 | { |
no test coverage detected