|
ProcessQueueTMaximumThreads Property
|
Gets or sets the maximum number of threads to process simultaneously.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public virtual int MaximumThreads { get; set; }
Public Overridable Property MaximumThreads As Integer
Get
Set
public:
virtual property int MaximumThreads {
int get ();
void set (int value);
}
abstract MaximumThreads : int with get, set
override MaximumThreads : int with get, set
function get_MaximumThreads();
function set_MaximumThreads(value);
View SourceProperty Value
Int32Sets the maximum number of processing threads.
Return Value
Int32Maximum number of processing threads.
Remarks If MaximumThreads is set to one, item processing will be synchronous (i.e., ThreadingMode = Synchronous)
See Also