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

◆ requires_clock_sync()

bool MayaFlux::Vruta::CrossRoutine::requires_clock_sync ( ) const
overridevirtual

Check if the routine should synchronize with a clock.

Returns
True if the routine requires clock synchronization

Implements MayaFlux::Vruta::Routine.

Definition at line 460 of file Routine.cpp.

461{
462 if (!m_handle) {
463 return false;
464 }
465 return m_handle.promise().sync_to_clock;
466}
std::coroutine_handle< promise_type > m_handle
Definition Routine.hpp:726

References m_handle.