Class BatchTaskState

java.lang.Object
com.azure.core.util.ExpandableStringEnum<BatchTaskState>
com.azure.compute.batch.models.BatchTaskState
All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>

public final class BatchTaskState extends com.azure.core.util.ExpandableStringEnum<BatchTaskState>
BatchTaskState enums.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final BatchTaskState
    The Task is queued and able to run, but is not currently assigned to a Compute Node.
    static final BatchTaskState
    The 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 BatchTaskState
    The 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 BatchTaskState
    The Task is running on a Compute Node.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
    Use the fromString(String) factory method.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates or finds a BatchTaskState from its string representation.
    Gets known BatchTaskState values.

    Methods inherited from class com.azure.core.util.ExpandableStringEnum

    equals, fromString, getValue, hashCode, toString, values

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • ACTIVE

      public static final BatchTaskState ACTIVE
      The Task is queued and able to run, but is not currently assigned to a Compute Node. A Task enters this state when it is created, when it is enabled after being disabled, or when it is awaiting a retry after a failed run.
    • PREPARING

      public static final BatchTaskState PREPARING
      The Task has been assigned to a Compute Node, but is waiting for a required Job Preparation Task to complete on the Compute Node. If the Job Preparation Task succeeds, the Task will move to running. If the Job Preparation Task fails, the Task will return to active and will be eligible to be assigned to a different Compute Node.
    • RUNNING

      public static final BatchTaskState RUNNING
      The Task is running on a Compute Node. This includes task-level preparation such as downloading resource files or deploying Packages specified on the Task - it does not necessarily mean that the Task command line has started executing.
    • COMPLETED

      public static final BatchTaskState COMPLETED
      The 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. A Task is also marked as completed if an error occurred launching the Task, or when the Task has been terminated.
  • Constructor Details

    • BatchTaskState

      @Deprecated public BatchTaskState()
      Deprecated.
      Use the fromString(String) factory method.
      Creates a new instance of BatchTaskState value.
  • Method Details

    • fromString

      public static BatchTaskState fromString(String name)
      Creates or finds a BatchTaskState from its string representation.
      Parameters:
      name - a name to look for.
      Returns:
      the corresponding BatchTaskState.
    • values

      public static Collection<BatchTaskState> values()
      Gets known BatchTaskState values.
      Returns:
      known BatchTaskState values.