adapnex::core::Application::CreateCyclicTaskGroup
Creates a new cyclic task group. The task group will be executed cyclically according to the given interval making it suitable for scheduling real‐time control tasks. Use TaskGroup::CreateTask to add tasks to the task group.
Synopsis
Declared in <adapnex/core/application.h>
static
std::shared_ptr<TaskGroup>
CreateCyclicTaskGroup(
Duration period,
unsigned int priority);
Parameters
| Name | Description |
|---|---|
period |
The cycle period (time). |
priority |
The task group priority. |
Created with MrDocs