class task_manager::delegate
Declaration
class task_manager::delegate { /* full declaration omitted */ };
Description
Implement this as the owner of task_manager to receive callbacks on generated tasks.
Declared at: include/task_manager.h:29
Member Function Overview
- task_created(const task * tsk) → virtual void
- delegate()
- delegate(const delegate &)
- delegate(delegate &&)
- operator=(const delegate &) → delegate &
- operator=(delegate &&) → delegate &
- ~delegate()
Member Functions
¶virtual void task_created(const task* tsk)
virtual void task_created(const task* tsk)
Description
Called whenever new tasks have been generated and inserted into the tasks graph.
Declared at: include/task_manager.h:40
Parameters
- const task* tsk
¶delegate()
delegate()
Declared at: include/task_manager.h:31
¶delegate(const delegate&)
delegate(const delegate&)
Declared at: include/task_manager.h:32
Parameters
- const delegate&
¶delegate(delegate&&)
delegate(delegate&&)
Declared at: include/task_manager.h:33
Parameters
- delegate&&
¶delegate& operator=(const delegate&)
delegate& operator=(const delegate&)
Declared at: include/task_manager.h:34
Parameters
- const delegate&
¶delegate& operator=(delegate&&)
delegate& operator=(delegate&&)
Declared at: include/task_manager.h:35
Parameters
- delegate&&
¶~delegate()
~delegate()
Declared at: include/task_manager.h:36