adTempus API
ArcanaDevelopment.adTempus.Client Namespace / JobQueue Class / GetJobs Method
Options controlling the fetch operation
If true, the list of jobs is refreshed from the server. If false, the cached set of jobs is returned.


In This Topic
    GetJobs Method (JobQueue)
    In This Topic
    Gets all jobs for this Queue that the caller has permission to view.
    Syntax
    'Declaration
     
    
    Public Function GetJobs( _
       ByVal options As ObjectFetchOptions, _
       ByVal refresh As Boolean _
    ) As JobCollection

    Parameters

    options
    Options controlling the fetch operation
    refresh
    If true, the list of jobs is refreshed from the server. If false, the cached set of jobs is returned.
    Remarks

    Jobs are not initially sent from the server. The first time this method is called, they are fetched from the server (regardless of the setting of the refresh parameter). On subsequent calls to this method, the jobs are re-fetched if refresh is True.

    Calling this method has no effect on the set of jobs returned by GetJobsWithPaging, and vice-versa.

    See Also