Provides a QRunnable Implementation for passing a single parameter to the actual run() implementation. More...
#include <QtDispatch/qiterationrunnable.h>
 Inheritance diagram for QIterationRunnable:
 Inheritance diagram for QIterationRunnable:| Public Member Functions | |
| QIterationRunnable () | |
| Constructs a new QBlockRunnable passing the given parameter. | |
| QIterationRunnable (const QIterationRunnable &o) | |
| virtual void | run (size_t index)=0 | 
Provides a QRunnable Implementation for passing a single parameter to the actual run() implementation.
This can for example be used in a case when for each iteration of a loop a new QRunnable will be created and you want to know during the execution of each runnable at which iteration it was created.
Definition at line 48 of file qiterationrunnable.h.
| QIterationRunnable::QIterationRunnable | ( | ) |  [inline] | 
Constructs a new QBlockRunnable passing the given parameter.
Definition at line 55 of file qiterationrunnable.h.
| QIterationRunnable::QIterationRunnable | ( | const QIterationRunnable & | o | ) |  [inline] | 
Definition at line 57 of file qiterationrunnable.h.
| virtual void QIterationRunnable::run | ( | size_t | index | ) |  [pure virtual] | 
Implemented in QIterationBlockRunnable.