Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Enqueues an item at tail end of the concurrent queue. This method is concurrency-safe.
void push(
const _Ty& _Src
);
Parameters
- _Src
The item to be added to the queue.
Remarks
push is concurrency-safe with respect to calls to the methods push, try_pop, and empty.
Requirements
Header: concurrent_queue.h
Namespace: Concurrency