CloudTask.ReactivateAsync Method

Definition

Reactivates this CloudTask, allowing it to run again even if its retry count has been exhausted.

public System.Threading.Tasks.Task ReactivateAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);
member this.ReactivateAsync : seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function ReactivateAsync (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

additionalBehaviors
IEnumerable<BatchClientBehavior>

A collection of BatchClientBehavior instances that are applied to the Batch service request after the CustomBehaviors.

cancellationToken
CancellationToken

A CancellationToken for controlling the lifetime of the asynchronous operation.

Returns

A Task that represents the asynchronous operation.

Remarks

Reactivation makes a task eligible to be retried again up to its maximum retry count.

This operation will fail for tasks that are not completed or that previously completed successfully (with an exit code of 0). Additionally, this will fail if the job is in the Completed or Terminating or Deleting state.

The reactivate operation runs asynchronously.

Applies to