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

◆ depends_on()

template<typename T >
ExecutionContext & MayaFlux::Yantra::ExecutionContext::depends_on ( )
inline

Register dependency on a specific operation type.

Template Parameters
TOperation type
Returns
Reference to this context for fluent chaining

Definition at line 224 of file ExecutionContext.hpp.

225 {
226 dependencies.emplace_back(typeid(T));
227 return *this;
228 }
std::vector< std::type_index > dependencies
Operation dependencies required before execution.