BloombergLP::bdlcc::FixedQueue::pushBack

pushBack overloads

Synopses

Declared in <bdlcc_fixedqueue.h>

Append the specified move-insertable value to the back of this queue, blocking until either space is available - if necessary - or the queue is disabled. value is left in a valid but unspecified state. Return 0 on success, and a nonzero value if the queue is disabled.

int
pushBack(bslmf::MovableRef<TYPE> value);
» more...

Append the specified value to the back of this queue, blocking until either space is available - if necessary - or the queue is disabled. Return 0 on success, and a nonzero value if the queue is disabled.

int
pushBack(TYPE const& value);
» more...