MCPcopy Create free account
hub / github.com/ChunelFeng/CGraph / async_pipeline_2

Function async_pipeline_2

tutorial/T07-MultiPipeline.cpp:26–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25
26std::future<CStatus> async_pipeline_2(GPipelinePtr pipeline_2) {
27 GElementPtr node2A, node2B, node2C = nullptr;
28
29 pipeline_2->registerGElement<MyNode2>(&node2A, {}, "node2A");
30 pipeline_2->registerGElement<MyNode2>(&node2B, {node2A}, "node2B");
31 pipeline_2->registerGElement<MyNode2>(&node2C, {node2A}, "node2C");
32
33 return pipeline_2->asyncProcess(3);
34}
35
36
37std::future<CStatus> async_pipeline_3(GPipelinePtr pipeline_3) {

Callers 1

tutorial_multi_pipelineFunction · 0.70

Calls 1

asyncProcessMethod · 0.45

Tested by

no test coverage detected