![]() |
Dataflow Runtime API
3.0.3.0
|
The RunnableIfc interface should be implemented by any class whose instances are intended to be executed by a thread. More...
#include <Imt.Base.OS.WinEC7/RunnableIfc.h>
Public Member Functions | |
virtual | ~RunnableIfc (void) |
Destructor. More... | |
virtual void | run (void)=0 |
When an object implementing RunnableIfc is used to create a thread, starting the thread causes it to call the object's run method. More... | |
The RunnableIfc interface should be implemented by any class whose instances are intended to be executed by a thread.
The class must define a method of no arguments called run.
|
inlinevirtual |
Destructor.
|
pure virtual |
When an object implementing RunnableIfc is used to create a thread, starting the thread causes it to call the object's run method.
The general contract of the method run is that it may take any action whatsoever.