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

◆ FluentExecutor() [3/4]

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

Construct with executor and raw data (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 wrap and process

Definition at line 94 of file OperationChain.hpp.

95 : FluentExecutor(std::move(executor), Datum<DataType>(input))
96 {
97 }