DefaultCreateTaskResultHandler.HandleTaskResult Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This handler treats success and 'TaskExists' errors as successful, retries server errors (HTTP 5xx), and throws AddTaskCollectionTerminatedException on client error (HTTP 4xx).
public override Azure.Compute.Batch.CreateTaskResultStatus HandleTaskResult(Azure.Compute.Batch.CreateTaskResult taskResult, System.Threading.CancellationToken cancellationToken);
override this.HandleTaskResult : Azure.Compute.Batch.CreateTaskResult * System.Threading.CancellationToken -> Azure.Compute.Batch.CreateTaskResultStatus
Public Overrides Function HandleTaskResult (taskResult As CreateTaskResult, cancellationToken As CancellationToken) As CreateTaskResultStatus
Parameters
- taskResult
- CreateTaskResult
The result of a single Add Task operation.
- cancellationToken
- CancellationToken
The cancellation token associated with the AddTaskCollection operation.
Returns
An CreateTaskResultStatus which indicates whether the taskResult
is classified as a success or as requiring a retry.