MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_task_names() [1/2]

std::vector< std::string > MayaFlux::Vruta::TaskScheduler::get_task_names ( ) const

Get all task names for debugging/inspection.

Returns
Vector of all task names

Definition at line 182 of file Scheduler.cpp.

183{
184 std::vector<std::string> names;
185 for (const auto& entry : m_tasks) {
186 if (entry.routine)
187 names.push_back(entry.name);
188 }
189 return names;
190}
std::vector< TaskEntry > m_tasks

References m_tasks.