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

◆ ExecutionMode

enum class MayaFlux::Yantra::ExecutionMode : uint8_t
strong

Execution paradigms for operations.

Enumerator
SYNC 

Synchronous execution.

ASYNC 

Asynchronous execution.

PARALLEL 

Parallel with other operations.

CHAINED 

Part of a sequential chain.

DEPENDENCY 

Part of dependency graph.

Definition at line 23 of file ExecutionContext.hpp.

23 : uint8_t {
24 SYNC, ///< Synchronous execution
25 ASYNC, ///< Asynchronous execution
26 PARALLEL, ///< Parallel with other operations
27 CHAINED, ///< Part of a sequential chain
28 DEPENDENCY ///< Part of dependency graph
29};
@ CHAINED
Part of a sequential chain.
@ DEPENDENCY
Part of dependency graph.
@ ASYNC
Asynchronous execution.