This class implements an approximation of java.util.Thread.
More...
|
static void | sleep (int millis) |
| Causes the currently executing thread to sleep for the specified number of milliseconds.
|
|
static void | currentThreadInterrupt () |
| Sets interrupted status for current thread to true.
|
|
static bool | interrupted () |
| Tests if the current thread has been interrupted and sets the interrupted status to false.
|
|
This class implements an approximation of java.util.Thread.
static void currentThreadInterrupt |
( |
| ) |
|
|
static |
Sets interrupted status for current thread to true.
Sets interrupted status to true.
static bool interrupted |
( |
| ) |
|
|
static |
Tests if the current thread has been interrupted and sets the interrupted status to false.
bool isCurrentThread |
( |
| ) |
const |
void run |
( |
Runnable |
start, |
|
|
void * |
data |
|
) |
| |
Runs the specified method on a newly created thread.
static void sleep |
( |
int |
millis | ) |
|
|
static |
Causes the currently executing thread to sleep for the specified number of milliseconds.
- Parameters
-
- Exceptions
-
Interrupted | Exception if the thread is interrupted. |
The documentation for this class was generated from the following file: