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

◆ Timer()

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

Constructs a Timer with the specified scheduler.

Parameters
schedulerThe TaskScheduler that will manage this timer

Creates a new Timer 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 12 of file Timers.cpp.

13 : m_Scheduler(scheduler)
14 , m_active(false)
15{
16}
bool m_active
Flag indicating whether a callback is currently scheduled.
Definition Timers.hpp:106
Vruta::TaskScheduler & m_Scheduler
Reference to the scheduler that manages this timer.
Definition Timers.hpp:89