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>
[[deprecated("Use CreateCyclicTaskGroup(const CyclicTaskGroupConfig &) instead")]]
static
std::shared_ptr<TaskGroup>
CreateCyclicTaskGroup(
Duration period,
unsigned int priority);
|
Deprecated: Use CreateCyclicTaskGroup(const CyclicTaskGroupConfig &) instead. Use of this entity is allowed but discouraged. |
Parameters
Name |
Description |
period |
The cycle period (time). |
priority |
The task group priority. |
Created with MrDocs