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

◆ TimedAction()

MayaFlux::Kriya::TimedAction::TimedAction ( Vruta::TaskScheduler scheduler)

Constructs a TimedAction with the specified scheduler.

Parameters
schedulerThe TaskScheduler that will manage this action

Creates a new TimedAction that will use the provided scheduler for timing operations. The scheduler provides the sample clock and task management infrastructure needed for precise timing.

Definition at line 54 of file Timers.cpp.

55 : m_Scheduler(scheduler)
56 , m_timer(scheduler)
57{
58}
Vruta::TaskScheduler & m_Scheduler
Reference to the scheduler that manages this action.
Definition Timers.hpp:194
Timer m_timer
The timer used to schedule the end function.
Definition Timers.hpp:202