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

◆ cleanup_completed_tasks()

void MayaFlux::Vruta::TaskScheduler::cleanup_completed_tasks ( )
private

Clean up completed tasks in a domain.

Definition at line 421 of file Scheduler.cpp.

422{
423 std::erase_if(m_tasks, [](const TaskEntry& entry) {
424 return !entry.routine || !entry.routine->is_active();
425 });
426}
std::vector< TaskEntry > m_tasks

References m_tasks, and MayaFlux::Vruta::TaskEntry::routine.

Referenced by process_all_tokens(), and process_token().

+ Here is the caller graph for this function: