AddJob Method
Adds a new job to the queue.
Required Permissions
JobQueueAddSyntax
public Job AddJob(
System.string type,
System.string desc,
JobParam[] paramArray,
System.int priority
)Public Function AddJob( _
ByVal type As System.String, _
ByVal desc As System.String, _
ByVal paramArray() As JobParam, _
ByVal priority As System.Integer _
) As JobParameters
| Name | Description |
|---|---|
| type | The type of job to add. |
| desc | A description of the job. |
| paramArray | An array of parameters for the job. |
| priority | The priority of the job. A lower number means a higher priority. 1 is the lowest possible number. |
Return Value
The new job object.