The maximum number of worker threads that can exist simultaneously per Object Store. Content Queue Worker Threads are threads that are dedicated to the purpose of processing items from the content queue. Their primary function is to carry out the second stage of the content upload process. Worker threads process work from the ContentQueue in batches of one or more queue items.


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property ContentQueueMaxWorkerThreads As Nullable(Of Integer)
C#
Nullable<int> ContentQueueMaxWorkerThreads { get; set; }
C++
property Nullable<int> ContentQueueMaxWorkerThreads abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_ContentQueueMaxWorkerThreads();

/** property */
public void set_ContentQueueMaxWorkerThreads(Nullable<intvalue);
JScript
public function get ContentQueueMaxWorkerThreads() : Nullable<int>

public function set ContentQueueMaxWorkerThreads(value : Nullable<int>);

Remarks

See Also