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

◆ is_running()

bool MayaFlux::Core::Engine::is_running ( ) const

Checks if the coordinated processing system is currently active.

Returns
true if all subsystems are running and processing, false otherwise

This reflects the overall system state - true only when the audio stream is active, schedulers are running, and the system is processing data.

Definition at line 179 of file Engine.cpp.

180{
182 return false;
183 }
184
185 if (m_is_initialized) {
186 auto status = m_subsystem_manager->query_subsystem_status();
187 for (const auto& [type, readiness] : status) {
188 const auto& [is_ready, is_running] = readiness;
189 if (is_ready && is_running) {
190 return true;
191 }
192 }
193 }
194 return false;
195}
std::shared_ptr< SubsystemManager > m_subsystem_manager
Definition Engine.hpp:316
bool is_running() const
Checks if the coordinated processing system is currently active.
Definition Engine.cpp:179
bool m_is_paused
Pause state flag.
Definition Engine.hpp:304

References is_running(), m_is_initialized, m_is_paused, and m_subsystem_manager.

Referenced by is_running().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: