adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Job Class / Priority Property


In This Topic
    Priority Property (Job)
    In This Topic
    Specify the priority of this job within the queue
    Syntax
    'Declaration
     
    
    Public Property Priority As Integer
    public int Priority {get; set;}
    public:
    property int Priority {
       int get();
       void set (    int value);
    }
    Remarks
    In a queue that limits the number of jobs that can run simultaneously, jobs with higher priorities are executed before jobs with lower priorities. New jobs have a default priority of 100. For queues with no limit, the Priority has no effect.
    See Also