[#BloombergLP-bdlmt-MultipriorityThreadPool-enqueueJob-05] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlmt.adoc[bdlmt]::xref:BloombergLP/bdlmt/MultipriorityThreadPool.adoc[MultipriorityThreadPool]::enqueueJob :relfileprefix: ../../../ :mrdocs: Enqueue the specified job at the specified priority. == Synopsis Declared in `<bdlmt_multiprioritythreadpool.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int enqueueJob( xref:BloombergLP/bdlmt/MultipriorityThreadPool/ThreadFunctor.adoc[ThreadFunctor] const& job, int priority); ---- == Description Add the specified `job` to the queue of this multi‐priority thread pool, assigning it the specified `priority`. Return 0 if the job was enqueued successfully, and a non‐zero value otherwise (implying that the queue was in the disabled state). The behavior is undefined unless `0 <= priority < numPriorities()`. == Return Value 0 if the job was enqueued, and a non‐zero value otherwise == Parameters [cols="1,4"] |=== | Name| Description | *job* | functor to be executed by a worker thread | *priority* | job priority; 0 is most urgent |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#