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

◆ FluentExecutor() [4/4]

template<typename Executor , ComputeData DataType>
MayaFlux::Yantra::FluentExecutor< Executor, DataType >::FluentExecutor ( std::shared_ptr< Executor >  executor,
DataType &&  input 
)
inline

Construct with executor and raw data (move, convenience entry point)

Wraps data in a Datum immediately. No container is attached; use the Datum overload when a container must be preserved through the chain.

Parameters
executorShared pointer to the executor instance
inputRaw data to move and wrap

Definition at line 108 of file OperationChain.hpp.

109 : FluentExecutor(std::move(executor), Datum<DataType>(std::move(input)))
110 {
111 }