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

◆ with_async() [2/2]

template<ComputeData StartType, typename ChainFunc , typename CompleteFn >
void MayaFlux::Yantra::ComputeMatrix::with_async ( StartType  input,
ChainFunc &&  chain,
CompleteFn &&  on_complete 
)
inline

Definition at line 415 of file ComputeMatrix.hpp.

416 {
417 with_async(Datum<StartType>(std::move(input)),
418 std::forward<ChainFunc>(chain),
419 std::forward<CompleteFn>(on_complete));
420 }
void with_async(Datum< StartType > input, ChainFunc &&chain, CompleteFn &&on_complete)
Execute an operation chain asynchronously.