| 14 | } |
| 15 | |
| 16 | size_t MessageQueue::CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end, const std::string &channel, bool blocking) const |
| 17 | { |
| 18 | if (begin >= MaxRetrievable()) |
| 19 | return 0; |
| 20 | |
| 21 | return m_queue.CopyRangeTo2(target, begin, STDMIN(MaxRetrievable(), end), channel, blocking); |
| 22 | } |
| 23 | |
| 24 | size_t MessageQueue::TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel, bool blocking) |
| 25 | { |
nothing calls this directly
no test coverage detected