#include <Runnable.h>
Inheritance diagram for util::Runnable:

Public Methods | |
| virtual | ~Runnable () |
| virtual void | start (void)=0 throw (RunException&) |
| Start the parallel processing. | |
Protected Methods | |
| virtual void | run (void)=0 |
| Subclasses must redefine this method to include the code that constitutes the actual parallel processing. | |
|
|
Subclasses must redefine this method to include the code that constitutes the actual parallel processing. When this method exists, the Runnable (thread, process or daemon) will be killed. Implemented in ClientHandler. |
|
|
Start the parallel processing. A new thread, process or daemon is created and its run method is called.
Implemented in util::Process, util::Daemon, and util::Thread. |