Class Overview
Priority values. Requests will be processed from higher priorities to lower
priorities, in FIFO order.
The order (from highest to lowest) is :
IMMEDIATE
,HIGH
,NORMAL
,LOW
.
Summary
Constants |
int |
HIGH |
Higher than normal
|
int |
IMMEDIATE |
Highest priority
|
int |
LOW |
Lowest priority
|
int |
NORMAL |
Normal priority
|
[Expand]
Inherited Methods |
From class
java.lang.Object
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
final
Class<?>
|
getClass()
Returns the runtime class of an object.
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long timeout, int nanos)
Causes current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or some other
thread interrupts the current thread, or a certain amount of real time has
elapsed.
|
final
void
|
wait(long timeout)
Causes current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a specified
amount of time has elapsed.
|
final
void
|
wait()
Causes current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
|
Constants
public
static
final
int
HIGH
Constant Value:
2
(0x00000002)
public
static
final
int
IMMEDIATE
Constant Value:
3
(0x00000003)
public
static
final
int
LOW
Constant Value:
0
(0x00000000)
public
static
final
int
NORMAL
Constant Value:
1
(0x00000001)