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

◆ execute_named_async()

template<typename OpClass , ComputeData InputType, ComputeData OutputType = InputType>
std::future< std::optional< IO< OutputType > > > MayaFlux::Yantra::ComputeMatrix::execute_named_async ( const std::string &  name,
const InputType &  input 
)
inline

Execute named operation asynchronously.

Definition at line 192 of file ComputeMatrix.hpp.

193 {
194 return std::async(std::launch::async, [this, name, input]() {
195 return execute_named<OpClass, InputType, OutputType>(name, input);
196 });
197 }