|
enum | NodeCategory {
unknown,
sourceNode,
sinkNode,
functionNode,
queuedoutNode,
joinNode,
splitNode,
faninNode,
fanoutNode,
multioutNode,
hydraNode
} |
|
typedef std::shared_ptr< INode > | pointer |
| Access subclass facet by pointer. More...
|
|
typedef std::vector< pointer > | vector |
| Vector of shared pointers. More...
|
|
typedef std::shared_ptr< Interface > | pointer |
|
Definition at line 82 of file _test_onion.cxx.
virtual TbbDepoSink::~TbbDepoSink |
( |
| ) |
|
|
inlinevirtual |
virtual void TbbDepoSink::connect |
( |
tbb::flow::graph_node & |
head, |
|
|
tbb::flow::graph_node & |
tail |
|
) |
| |
|
inlinevirtual |
Definition at line 95 of file _test_onion.cxx.
96 tbb::flow::sender<IDepo::pointer>* myhead =
dynamic_cast<tbb::flow::sender<IDepo::pointer>*
>(&head);
98 tbb::flow::receiver<IDepo::pointer>* mytail =
dynamic_cast<tbb::flow::receiver<IDepo::pointer>*
>(&tail);
100 make_edge(*myhead, *mytail);
tbb::flow::graph_node* TbbDepoSink::make_node |
( |
tbb::flow::graph & |
graph, |
|
|
int |
concurency = 1 |
|
) |
| |
|
inline |
Definition at line 92 of file _test_onion.cxx.
93 return new tbb::flow::function_node<IDepo::pointer>(
graph, concurency, *
this);
def graph(desc, maker=maker)
void TbbDepoSink::operator= |
( |
const TbbDepoSink & |
other | ) |
|
|
inline |
The documentation for this class was generated from the following file: