| 735 | explicit ConsumerToken(BlockingConcurrentQueue<T, Traits>& q); |
| 736 | |
| 737 | ConsumerToken(ConsumerToken&& other) MOODYCAMEL_NOEXCEPT |
| 738 | : initialOffset(other.initialOffset), lastKnownGlobalOffset(other.lastKnownGlobalOffset), itemsConsumedFromCurrent(other.itemsConsumedFromCurrent), currentProducer(other.currentProducer), desiredProducer(other.desiredProducer) |
| 739 | { |
| 740 | } |
| 741 | |
| 742 | inline ConsumerToken& operator=(ConsumerToken&& other) MOODYCAMEL_NOEXCEPT |
| 743 | { |
nothing calls this directly
no outgoing calls
no test coverage detected