  | JetClientRunJob(Job, JobConfiguration, FileSystemClient, String) Method | 
            Stores the job configuration and the specified files on the DFS using the specified 
FileSystemClient, and runs the job.
            
 Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic void RunJob(
	Job job,
	JobConfiguration config,
	FileSystemClient fileSystemClient,
	params string[] files
)
Public Sub RunJob ( 
	job As Job,
	config As JobConfiguration,
	fileSystemClient As FileSystemClient,
	ParamArray files As String()
)
public:
void RunJob(
	Job^ job, 
	JobConfiguration^ config, 
	FileSystemClient^ fileSystemClient, 
	... array<String^>^ files
)
member RunJob : 
        job : Job * 
        config : JobConfiguration * 
        fileSystemClient : FileSystemClient * 
        files : string[] -> unit Parameters
- job  Job
 - The job to run.
 - config  JobConfiguration
 - The JobConfiguration for the job.
 - fileSystemClient  FileSystemClient
 - A FileSystemClient used to access the Jumbo DFS.
 - files  String
 - The local paths of the files to store in the job directory on the DFS. This should include the assembly containing the task classes.
 
Return Value
An instance of the 
Job class describing the job that was started.
See Also