DthingApi
Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
java.lang.DThread Class Reference
Inheritance diagram for java.lang.DThread:
java.lang.Runnable

Public Member Functions

 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 Public Member Functions

static int activeCount ()
 
static DThread currentThread ()
 
static void sleep (long millis) throws java.lang.InterruptedException
 
static void yield ()
 

Static Public Attributes

static final int MAX_PRIORITY = 10
 
static final int MIN_PRIORITY = 1
 
static final int NORM_PRIORITY = 5
 

Detailed Description

Thread reference implementation.

Member Function Documentation

◆ isAlive()

final boolean java.lang.DThread.isAlive ( )
inline

Test if the thread is alive.

◆ join()

final void java.lang.DThread.join ( ) throws java.lang.InterruptedException
inline

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

Runnable

.

Implements java.lang.Runnable.


The documentation for this class was generated from the following file: