Share via


MultiInstanceSettings Constructors

Definition

Overloads

MultiInstanceSettings()

Default constructor to support mocking the MultiInstanceSettings class.

MultiInstanceSettings(String, Nullable<Int32>)

Initializes a new instance of the MultiInstanceSettings class.

MultiInstanceSettings()

Source:
MultiInstanceSettings.cs

Default constructor to support mocking the MultiInstanceSettings class.

protected MultiInstanceSettings ();
Protected Sub New ()

Applies to

MultiInstanceSettings(String, Nullable<Int32>)

Source:
MultiInstanceSettings.cs

Initializes a new instance of the MultiInstanceSettings class.

public MultiInstanceSettings (string coordinationCommandLine, int? numberOfInstances = default);
new Microsoft.Azure.Batch.MultiInstanceSettings : string * Nullable<int> -> Microsoft.Azure.Batch.MultiInstanceSettings
Public Sub New (coordinationCommandLine As String, Optional numberOfInstances As Nullable(Of Integer) = Nothing)

Parameters

coordinationCommandLine
String

The command to run on the compute node instances for coordinating among the subtasks.

numberOfInstances
Nullable<Int32>

The number of compute nodes required by the multi-instance task.

Applies to