GrPPI  0.3.1
Generic and Reusable Parallel Pattern Interface
Namespaces | Functions
pipeline.h File Reference
#include <utility>
#include "common/callable_traits.h"
#include "common/execution_traits.h"
#include "common/pipeline_pattern.h"
Include dependency graph for pipeline.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 grppi
 

Functions

template<typename Execution , typename Generator , typename... Transformers, requires_execution_supported< Execution > = 0>
void grppi::pipeline (const Execution &ex, Generator &&generate_op, Transformers &&...transform_ops)
 Invoke Pipeline pattern on a data stream. More...
 
template<typename Generator , typename... Transformers, typename Consumer >
auto grppi::pipeline (Generator &&generate_op, Transformers &&...transform_ops, Consumer &&consume_op)
 Build a composable Pipeline pattern representation that can be composed in other streaming patterns. More...