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

◆ get_operator_chain()

std::shared_ptr< OperatorChain > MayaFlux::Nodes::Network::NodeNetwork::get_operator_chain ( ) const
inline

Access the secondary operator chain.

The chain holds operators that run after the primary operator each process_batch() cycle. Subclasses call get_operator_chain()->process(dt) at the appropriate point in their process_batch() implementation.

Returned shared_ptr is never null – the chain is created in NodeNetwork's constructor and lives for the lifetime of the network.

Definition at line 401 of file NodeNetwork.hpp.

402 {
403 return m_operator_chain;
404 }
std::shared_ptr< OperatorChain > m_operator_chain