public static enum Dispatcher.Stage extends Enum<Dispatcher.Stage>
| Enum Constant and Description |
|---|
RUN
Task execution.
|
START
Execution of a call that submits a task for processing has started.
|
SUBMIT
Between the start end the end of a call that submits a task for processing.
|
WAIT
Waiting in the
Dispatcher queue. |
| Modifier and Type | Method and Description |
|---|---|
static Dispatcher.Stage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dispatcher.Stage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dispatcher.Stage START
public static final Dispatcher.Stage WAIT
Dispatcher queue.public static final Dispatcher.Stage RUN
public static final Dispatcher.Stage SUBMIT
public static Dispatcher.Stage[] values()
for (Dispatcher.Stage c : Dispatcher.Stage.values()) System.out.println(c);
public static Dispatcher.Stage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024 LSST. All rights reserved.