|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DispatchPriority>
org.fusesource.hawtdispatch.DispatchPriority
public enum DispatchPriority
Defines the supported global/concurrent queue priorities.
Enum Constant Summary | |
---|---|
DEFAULT
Items dispatched to the queue will run at the default priority, i.e. the queue will be scheduled for execution after all high priority queues have been scheduled, but before any low priority queues have been scheduled. |
|
HIGH
Items dispatched to the queue will run at high priority, i.e. the queue will be scheduled for execution before any default priority or low priority queue. |
|
LOW
Items dispatched to the queue will run at low priority, i.e. the queue will be scheduled for execution after all default priority and high priority queues have been scheduled. |
Method Summary | |
---|---|
static DispatchPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DispatchPriority[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DispatchPriority HIGH
public static final DispatchPriority DEFAULT
public static final DispatchPriority LOW
Method Detail |
---|
public static DispatchPriority[] values()
for (DispatchPriority c : DispatchPriority.values()) System.out.println(c);
public static DispatchPriority valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |