Package com.google.gerrit.server.git
Enum Class WorkQueue.Task.State
- All Implemented Interfaces:
Serializable
,Comparable<WorkQueue.Task.State>
,java.lang.constant.Constable
- Enclosing class:
- WorkQueue.Task<V>
Summarized status of a single task.
Tasks have the following state flow:
SLEEPING
: if scheduled with a non-zero delay.READY
: waiting for an available worker thread.STARTING
: onStart() actively executing on a worker thread.RUNNING
: actively executing on a worker thread.STOPPING
: onStop() actively executing on a worker thread.DONE
: finished executing, if not periodic.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic WorkQueue.Task.State
Returns the enum constant of this class with the specified name.static WorkQueue.Task.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DONE
-
CANCELLED
-
STOPPING
-
RUNNING
-
STARTING
-
READY
-
SLEEPING
-
OTHER
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-