MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / ConsumerToken

Method ConsumerToken

concurrentqueue.h:737–740  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected