popFront overloads
Synopses
Declared in <bdlcc_fixedqueue.h>
Remove the element from the front of this queue and return it's value. If the queue is empty, block until it is not empty.
TYPE
popFront();
Remove the element from the front of this queue and load that element into the specified value. If the queue is empty, block until it is not empty.
void
popFront(TYPE* value);
Return Value
the removed element value
Parameters
Name |
Description |
value |
receives the removed element |
Created with MrDocs