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

◆ restart()

bool MayaFlux::Vruta::SoundRoutine::restart ( )
overridevirtual

Restarts the coroutine from the beginning.

Returns
True if restart succeeded, false otherwise

Resets the coroutine to its initial state and prepares it for execution from the beginning. This allows reusing the same coroutine logic multiple times without creating a new coroutine.

Implements MayaFlux::Vruta::Routine.

Definition at line 178 of file Routine.cpp.

179{
180 if (!m_handle)
181 return false;
182
183 set_state<bool>("restart", true);
184 m_handle.promise().auto_resume = true;
185 if (is_active()) {
186 m_handle.resume();
187 return true;
188 }
189 return false;
190}
std::coroutine_handle< promise_type > m_handle
Handle to the underlying coroutine.
Definition Routine.hpp:460
bool is_active() const override
Checks if the coroutine is still active.
Definition Routine.cpp:79

References is_active(), and m_handle.

+ Here is the call graph for this function: