MayaFlux 0.4.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 180 of file Engine.cpp.

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

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: