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

◆ start_all_subsystems()

void MayaFlux::Core::SubsystemManager::start_all_subsystems ( )

Start all registered subsystems in coordination.

Definition at line 94 of file SubsystemManager.cpp.

95{
96 for (auto& [token, subsystem] : m_subsystems) {
97 if (subsystem->is_ready()) {
98 subsystem->start();
99 }
100 }
101}
static MayaFlux::Nodes::ProcessingToken token
Definition Timers.cpp:8
std::unordered_map< SubsystemType, std::shared_ptr< ISubsystem > > m_subsystems

References m_subsystems, and token.