Start
Starts a new job with the specified configuration
Syntax
wds.Start( jobConfig )
Arguments
Name | Type | Description |
---|---|---|
jobConfig | JobConfig | Required. Job configuration |
Return type
TABLE (Task wds.DownloadTask)
Return value
List of DownloadTask (one per Start URL) in a form of table.
Examples
Creating a job and getting initial download tasks
DECLARE @jobConfig wds.JobConfig = 'JobName: TestJob1; Server: wds://localhost:2807; StartUrls: http://playground.svc';
SELECT
root.Task.Url URL
FROM wds.Start(@jobConfig) root
URL |
---|
http://playground.svc/ |