[#BloombergLP-bdlcc-SingleProducerSingleConsumerBoundedQueue-tryPopFront] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/SingleProducerSingleConsumerBoundedQueue.adoc[SingleProducerSingleConsumerBoundedQueue]::tryPopFront :relfileprefix: ../../../ :mrdocs: Attempt to remove the element from the front of this queue without blocking, and, if successful, load the specified `value` with the removed element. Return 0 on success, and a non‐zero value otherwise. Specifically, return `e_SUCCESS` on success, `e_DISABLED` if `isPopFrontDisabled()`, and `e_EMPTY` if `!isPopFrontDisabled()` and the queue was empty. On failure, `value` is not changed. The behavior is undefined unless the invoker of this method is the single consumer. == Synopsis Declared in `<bdlcc_singleproducersingleconsumerboundedqueue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int tryPopFront(TYPE* value); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#