ConcurrentJobs Property

Gets or sets the number of concurrent jobs that the job manager can start when it uses this job definition.

Namespace:  Microsoft.Web.Media.TransformManager
Assembly:  Microsoft.Web.Media.TransformManager.Common (in Microsoft.Web.Media.TransformManager.Common.dll)

Syntax

'Declaration
<DataMemberAttribute> _
Public Property ConcurrentJobs As Integer
    Get
    Set
'Usage

  Dim instance As JobDefinition
Dim value As Integer

value = instance.ConcurrentJobs

instance.ConcurrentJobs = value
[DataMemberAttribute]
public int ConcurrentJobs { get; set; }
[DataMemberAttribute]
public:
property int ConcurrentJobs {
    int get ();
    void set (int value);
}
[<DataMemberAttribute>]
member ConcurrentJobs : int with get, set
  function get ConcurrentJobs () : int
function set ConcurrentJobs (value : int)

Property Value

Type: System. . :: . .Int32
The number of concurrent jobs that the job manager can start when it uses this job definition.

Remarks

A job scheduler can have a global limit on the number of concurrent jobs that it will create. Any job definition can also have a limit so that overall job throughput can be managed using the ConcurrentJobs property.

See Also

Reference

JobDefinition Class

Microsoft.Web.Media.TransformManager Namespace