adTempus API
ArcanaDevelopment.adTempus.Client Namespace / TimeCriterion Class / StartWithin Property


In This Topic
    StartWithin Property
    In This Topic
    Specifies a window of time (in seconds) within the job should start.
    Syntax
    'Declaration
     
    
    Public Property StartWithin As Integer
    public int StartWithin {get; set;}
    public:
    property int StartWithin {
       int get();
       void set (    int value);
    }
    Remarks
    If StartWithin is 0 (the default) adTempus starts the job as close to the exact scheduled start time as possible. If StartWithin is set to a positive value, it indicates that the job should start within StartsWithin seconds of the scheduled execution time. adTempus will randomly select a start time within that window. If AllowEarlyStart is True, the job may start up to StartWithin seconds before the specified start time.
    See Also