|
HDK
|
Typedefs | |
| template<typename Receives , typename Provides > | |
| using | Filter = tbb::filter< Receives, Provides > |
| A filter (task) that will make up part of the pipeline. More... | |
| using | FlowControl = tbb::flow_control |
| The control to signal end-of-input for the pipeline. More... | |
Enumerations | |
| enum | Mode { Parallel = (int)tbb::filter_mode::parallel, SerialInOrder = (int)tbb::filter_mode::serial_in_order, SerialOutOfOrder = (int)tbb::filter_mode::serial_out_of_order } |
| The execution mode of a filter. More... | |
| using UT_ParallelPipeline::Filter = typedef tbb::filter<Receives, Provides> |
A filter (task) that will make up part of the pipeline.
| Receives | The type that this filter receives for an upstream filter. void if it is the first filter in a pipeline. |
| Provides | The type that this filter provides to a downstream filter. void if it is the last filter in a pipeline. |
Definition at line 23 of file UT_ParallelPipeline.h.
| using UT_ParallelPipeline::FlowControl = typedef tbb::flow_control |
The control to signal end-of-input for the pipeline.
Definition at line 34 of file UT_ParallelPipeline.h.
The execution mode of a filter.
| Enumerator | |
|---|---|
| Parallel | |
| SerialInOrder | |
| SerialOutOfOrder | |
Definition at line 26 of file UT_ParallelPipeline.h.