The Micro C++ Library
|
Interface that may be used within a thread as the thread's execution implementation. More...
#include <micxx.hxx>
Public Member Functions | |
virtual | ~Runnable () |
The Runnable destructor. | |
virtual void | run ()=0 |
Called to execute a Runnable object. | |
Protected Member Functions | |
virtual void | stopped () |
Called right after run() returns. | |
Friends | |
class | micxx::Thread |
Interface that may be used within a thread as the thread's execution implementation.
virtual micxx::traits::Runnable::~Runnable | ( | ) | [inline, virtual] |
The Runnable destructor.
{}
virtual void micxx::traits::Runnable::run | ( | ) | [pure virtual] |
Called to execute a Runnable object.
virtual void micxx::traits::Runnable::stopped | ( | ) | [inline, protected, virtual] |
Called right after run() returns.
{}
friend class micxx::Thread [friend] |