Home | C-Bits Package Documentation | Project Page |
#include <Runnable.h>
Inheritance diagram for cbits::Runnable:
Public Methods | |
virtual void | run (void)=0 |
The cbits::Thread entry point into client-defined code. More... |
An instance of this class must be supplied to a Thread object instance for execution.
To execute user code in a Thread object:
|
The cbits::Thread entry point into client-defined code. The cbits::Thread object will begin execution of the concrete Runnable instance by calling this method. When the run method exits, the cbits::Thread instance wil die. Implemented in cbits::CallbackTimer. |
|
|