Submitting a xmlAlgebra job

Namespace: VcClient
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
[ObsoleteAttribute("Use SubmitJob(SubmitJobParameters parameters, bool compression) instead")]
public static JobInfo SubmitJob(
	string name,
	int priority,
	List<string> resources,
	List<string> embeddedFiles,
	string runtimeName,
	string xmlGraphFileName,
	string manifestFileName,
	bool compression
)
Visual Basic
<ObsoleteAttribute("Use SubmitJob(SubmitJobParameters parameters, bool compression) instead")> _
Public Shared Function SubmitJob ( _
	name As String, _
	priority As Integer, _
	resources As List(Of String), _
	embeddedFiles As List(Of String), _
	runtimeName As String, _
	xmlGraphFileName As String, _
	manifestFileName As String, _
	compression As Boolean _
) As JobInfo
Visual C++
[ObsoleteAttribute(L"Use SubmitJob(SubmitJobParameters parameters, bool compression) instead")]
public:
static JobInfo^ SubmitJob(
	String^ name, 
	int priority, 
	List<String^>^ resources, 
	List<String^>^ embeddedFiles, 
	String^ runtimeName, 
	String^ xmlGraphFileName, 
	String^ manifestFileName, 
	bool compression
)

Parameters

name
Type: String
Job Name
priority
Type: Int32
Job Priority. Lower values have higher priority.
resources
Type: List<(Of <(<'String>)>)>
List of cluster resources used by the job
embeddedFiles
Type: List<(Of <(<'String>)>)>
List of files that need to be uploaded with the job
runtimeName
Type: String
Runtime Name.
xmlGraphFileName
Type: String
XML-graph file name.
manifestFileName
Type: String
Manifest file name.
compression
Type: Boolean
Whether to use compression while submitting the job and uploaded files needed by the job

Return Value

A JobInfo describing the submission

See Also