Compartilhar via


StartTaskInformation Construtores

Definição

Sobrecargas

StartTaskInformation()

Inicializa uma nova instância da classe StartTaskInformation.

StartTaskInformation(StartTaskState, DateTime, Int32, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<DateTime>, Nullable<TaskExecutionResult>)

Inicializa uma nova instância da classe StartTaskInformation.

StartTaskInformation()

Origem:
StartTaskInformation.cs

Inicializa uma nova instância da classe StartTaskInformation.

public StartTaskInformation ();
Public Sub New ()

Aplica-se a

StartTaskInformation(StartTaskState, DateTime, Int32, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<DateTime>, Nullable<TaskExecutionResult>)

Origem:
StartTaskInformation.cs

Inicializa uma nova instância da classe StartTaskInformation.

public StartTaskInformation (Microsoft.Azure.Batch.Protocol.Models.StartTaskState state, DateTime startTime, int retryCount, DateTime? endTime = default, int? exitCode = default, Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation containerInfo = default, Microsoft.Azure.Batch.Protocol.Models.TaskFailureInformation failureInfo = default, DateTime? lastRetryTime = default, Microsoft.Azure.Batch.Protocol.Models.TaskExecutionResult? result = default);
new Microsoft.Azure.Batch.Protocol.Models.StartTaskInformation : Microsoft.Azure.Batch.Protocol.Models.StartTaskState * DateTime * int * Nullable<DateTime> * Nullable<int> * Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation * Microsoft.Azure.Batch.Protocol.Models.TaskFailureInformation * Nullable<DateTime> * Nullable<Microsoft.Azure.Batch.Protocol.Models.TaskExecutionResult> -> Microsoft.Azure.Batch.Protocol.Models.StartTaskInformation
Public Sub New (state As StartTaskState, startTime As DateTime, retryCount As Integer, Optional endTime As Nullable(Of DateTime) = Nothing, Optional exitCode As Nullable(Of Integer) = Nothing, Optional containerInfo As TaskContainerExecutionInformation = Nothing, Optional failureInfo As TaskFailureInformation = Nothing, Optional lastRetryTime As Nullable(Of DateTime) = Nothing, Optional result As Nullable(Of TaskExecutionResult) = Nothing)

Parâmetros

state
StartTaskState

O estado do StartTask no Nó de Computação.

startTime
DateTime

A hora em que o StartTask começou a ser executado.

retryCount
Int32

O número de vezes que a Tarefa foi repetida pelo serviço lote.

endTime
Nullable<DateTime>

A hora em que o StartTask parou de ser executado.

exitCode
Nullable<Int32>

O código de saída do programa especificado na linha de comando StartTask.

containerInfo
TaskContainerExecutionInformation

Informações sobre o contêiner no qual a Tarefa está sendo executada.

failureInfo
TaskFailureInformation

Informações que descrevem a falha da tarefa, se houver.

lastRetryTime
Nullable<DateTime>

A hora mais recente em que uma nova tentativa da Tarefa começou a ser executada.

result
Nullable<TaskExecutionResult>

O resultado da execução da tarefa.

Aplica-se a