[#BloombergLP-bdlcc-MultipriorityQueue-pushBack-03] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/MultipriorityQueue.adoc[MultipriorityQueue]::pushBack :relfileprefix: ../../../ :mrdocs: `pushBack` overloads == Synopses Declared in `<bdlcc_multipriorityqueue.h>` Insert the value of the specified `item` with the specified `itemPriority` into this multipriority queue before any queued items having a less urgent priority (higher value) than `itemPriority`, and after any items having the same or more urgent priority (lower value) than `itemPriority`. `item` is left in a valid but unspecified state. If the multipriority queue is enabled, the push succeeds and `0` is returned, otherwise the push fails, the queue remains unchanged, and a nonzero value is returned. The behavior is undefined unless `0 <= itemPriority < numPriorities()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int xref:BloombergLP/bdlcc/MultipriorityQueue/pushBack-05.adoc[pushBack]( xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<TYPE>] item, int itemPriority); ---- [.small]#xref:BloombergLP/bdlcc/MultipriorityQueue/pushBack-05.adoc[_» more..._]# Insert the value of the specified `item` with the specified `itemPriority` into this multipriority queue before any queued items having a less urgent priority (higher value) than `itemPriority`, and after any items having the same or more urgent priority (lower value) than `itemPriority`. If the multipriority queue is enabled, the push succeeds and `0` is returned, otherwise the push fails, the queue remains unchanged, and a nonzero value is returned. The behavior is undefined unless `0 <= itemPriority < numPriorities()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int xref:BloombergLP/bdlcc/MultipriorityQueue/pushBack-06.adoc[pushBack]( TYPE const& item, int itemPriority); ---- [.small]#xref:BloombergLP/bdlcc/MultipriorityQueue/pushBack-06.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#