Uses of Class
com.azure.compute.batch.models.BatchTaskState
Packages that use BatchTaskState
-
Uses of BatchTaskState in com.azure.compute.batch.models
Fields in com.azure.compute.batch.models declared as BatchTaskStateModifier and TypeFieldDescriptionstatic final BatchTaskStateBatchTaskState.ACTIVEThe Task is queued and able to run, but is not currently assigned to a Compute Node.static final BatchTaskStateBatchTaskState.COMPLETEDThe Task is no longer eligible to run, usually because the Task has finished successfully, or the Task has finished unsuccessfully and has exhausted its retry limit.static final BatchTaskStateBatchTaskState.PREPARINGThe Task has been assigned to a Compute Node, but is waiting for a required Job Preparation Task to complete on the Compute Node.static final BatchTaskStateBatchTaskState.RUNNINGThe Task is running on a Compute Node.Methods in com.azure.compute.batch.models that return BatchTaskStateModifier and TypeMethodDescriptionstatic BatchTaskStateBatchTaskState.fromString(String name) Creates or finds a BatchTaskState from its string representation.BatchTask.getPreviousState()Get the previousState property: The previous state of the Task.BatchTask.getState()Get the state property: The current state of the Task.BatchTaskInfo.getTaskState()Get the taskState property: The current state of the Task.Methods in com.azure.compute.batch.models that return types with arguments of type BatchTaskStateModifier and TypeMethodDescriptionstatic Collection<BatchTaskState> BatchTaskState.values()Gets known BatchTaskState values.