| 22 | } |
| 23 | |
| 24 | size_t MessageQueue::TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel, bool blocking) |
| 25 | { |
| 26 | transferBytes = STDMIN(MaxRetrievable(), transferBytes); |
| 27 | size_t blockedBytes = m_queue.TransferTo2(target, transferBytes, channel, blocking); |
| 28 | m_lengths.front() -= transferBytes; |
| 29 | return blockedBytes; |
| 30 | } |
| 31 | |
| 32 | bool MessageQueue::GetNextMessage() |
| 33 | { |
nothing calls this directly
no test coverage detected