|
| DThread (Runnable target1) |
|
void | run () |
|
final int | getPriority () |
|
final boolean | isAlive () |
|
final void | join () throws java.lang.InterruptedException |
|
final void | setPriority (int newPriority) |
|
synchronized void | start () |
|
String | toString () |
|
|
static int | activeCount () |
|
static DThread | currentThread () |
|
static void | sleep (long millis) throws java.lang.InterruptedException |
|
static void | yield () |
|
|
static final int | MAX_PRIORITY = 10 |
|
static final int | MIN_PRIORITY = 1 |
|
static final int | NORM_PRIORITY = 5 |
|
Thread reference implementation.
◆ isAlive()
final boolean java.lang.DThread.isAlive |
( |
| ) |
|
|
inline |
Test if the thread is alive.
◆ join()
Waits for this thread to die.
◆ run()
void java.lang.DThread.run |
( |
| ) |
|
|
inline |
Starts executing the active part of the class' code. This method is called when a thread is started that has been created with a class which implements
.
Implements java.lang.Runnable.
The documentation for this class was generated from the following file:
- src/java/lang/DThread.java