![]() |
Public API Reference |
![]() |
Object representing a separate execution thread. More...
#include <csutil/threading/thread.h>
Public Member Functions | |
ThreadPriority | GetPriority () const |
Get current execution priority for this thread. | |
bool | IsRunning () const |
Return whether thread is running or not. | |
bool | SetPriority (ThreadPriority prio) |
Set the current execution priority of this thread. | |
void | Start () |
Start the thread. | |
void | Stop () |
Unmercifully stop the thread as soon as possible. | |
Thread (Runnable *runnable, bool start=false) | |
Initialize a new thread object. | |
Thread (Runnable *runnable, ThreadPriority prio) | |
Initialize a new thread object. | |
Thread (Runnable *runnable, bool start, ThreadPriority prio) | |
Initialize a new thread object. | |
void | Wait () const |
Wait for thread to finish its execution. | |
Static Public Member Functions | |
static ThreadID | GetThreadID () |
Get an OS specific thread identifier. | |
static void | Yield () |
Yield Thread frees CPU time if nothing to do. |
Object representing a separate execution thread.
Used to create, manage and control execution threads.
CS::Threading::Thread::Thread | ( | Runnable * | runnable, |
bool | start = false |
||
) | [inline] |
CS::Threading::Thread::Thread | ( | Runnable * | runnable, |
ThreadPriority | prio | ||
) | [inline] |
CS::Threading::Thread::Thread | ( | Runnable * | runnable, |
bool | start, | ||
ThreadPriority | prio | ||
) | [inline] |
ThreadPriority CS::Threading::Thread::GetPriority | ( | ) | const [inline] |
static ThreadID CS::Threading::Thread::GetThreadID | ( | ) | [inline, static] |
Get an OS specific thread identifier.
bool CS::Threading::Thread::IsRunning | ( | ) | const [inline] |
bool CS::Threading::Thread::SetPriority | ( | ThreadPriority | prio | ) | [inline] |
Set the current execution priority of this thread.
The specifics of when this takes effect and what underlying platform priority each value maps to are properties of the specific platform-based implementation.
void CS::Threading::Thread::Start | ( | ) | [inline] |
void CS::Threading::Thread::Stop | ( | ) | [inline] |
Unmercifully stop the thread as soon as possible.
This method performs a dirty shutdown of the thread. The thread is not given a chance to exit normally. Do not invoke this method unless you have a very good reason for doing so. In general, it is best to implement some sort of communication with threads so that you can ask them to terminate in an orderly fashion.
void CS::Threading::Thread::Wait | ( | ) | const [inline] |
static void CS::Threading::Thread::Yield | ( | ) | [inline, static] |