|
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.220-beta+a56b2444ff27b37e053039e60f062b99378309bd
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