|
ORIGINAL
|
Abstract base class for all tasks. More...
#include <tasks.h>


Public Member Functions | |
| virtual void | run ()=0 |
| Executes the task. | |
| virtual | ~taskBase ()=default |
| Virtual destructor for proper polymorphic behavior. | |
Abstract base class for all tasks.
Provides the common interface for tasks to be executed in the thread pool. Must implement the run() method.
Executes the task.
Implemented in original::taskDelegator::task< TYPE >.