Dataflow Runtime API  3.0.3.0
Public Member Functions | List of all members
imt::base::os::winec7::RunnableIfc Class Referenceabstract

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...
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ ~RunnableIfc()

virtual imt::base::os::winec7::RunnableIfc::~RunnableIfc ( void  )
inlinevirtual

Destructor.

Member Function Documentation

◆ run()

virtual void imt::base::os::winec7::RunnableIfc::run ( void  )
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.


The documentation for this class was generated from the following file: