| 208 | /////////////////////////////////////////////// |
| 209 | |
| 210 | void LearnerSender :: WaitToSend() |
| 211 | { |
| 212 | m_oLock.Lock(); |
| 213 | while (!m_bIsComfirmed) |
| 214 | { |
| 215 | m_oLock.WaitTime(1000); |
| 216 | if (m_bIsEnd) |
| 217 | { |
| 218 | break; |
| 219 | } |
| 220 | } |
| 221 | m_oLock.UnLock(); |
| 222 | } |
| 223 | |
| 224 | void LearnerSender :: SendLearnedValue(const uint64_t llBeginInstanceID, const nodeid_t iSendToNodeID) |
| 225 | { |
nothing calls this directly
no outgoing calls
no test coverage detected