| 15 | } |
| 16 | |
| 17 | void ThreadsCommutator::PostMessage(ThreadName name, drape_ptr<Message> && message, MessagePriority priority) |
| 18 | { |
| 19 | TAcceptorsMap::iterator it = m_acceptors.find(name); |
| 20 | ASSERT(it != m_acceptors.end(), ()); |
| 21 | if (it != m_acceptors.end() && it->second->CanReceiveMessages()) |
| 22 | it->second->PostMessage(std::move(message), priority); |
| 23 | } |
| 24 | |
| 25 | } // namespace df |
nothing calls this directly
no test coverage detected