![]() |
Vault
4.1
|
VStandinThread is a special VThread object we simply declare as gStandinThread (but never execute) and reference if we need to return a reference to the current thread but it's not one of our threads. More...
Public Member Functions | |
virtual void | run () |
Override required in each VThread subclass, run() does whatever the thread is designed to do, and returns when the thread has completed its task or detects that isRunning() returns false. |
VStandinThread is a special VThread object we simply declare as gStandinThread (but never execute) and reference if we need to return a reference to the current thread but it's not one of our threads.
Definition at line 42 of file vthread.cpp.
virtual void VStandinThread::run | ( | ) | [inline, virtual] |
Override required in each VThread subclass, run() does whatever the thread is designed to do, and returns when the thread has completed its task or detects that isRunning() returns false.
If the thread is designed to be stoppable from another thread, then its run() method must check the isRunning() property periodically and return when the property becomes false.
Implements VThread.
Definition at line 46 of file vthread.cpp.