InputNodeBody¶
[req.input_node_body]
A type Body satisfies the InputNodeBody if it meets the following requirements:
InputNodeBody Requirements: Pseudo-Signature, Semantics
-
Body::~Body() Destructor.
-
Output
Body::operator()(tbb::flow_control &fc)¶ Requirements: The type
Outputmust be the same as template type argumentOutputof theinput_nodeinstance in whichBodyobject is passed during construction.Apply body to generate next item. Call
fc.stop()when new element can not be generated. SinceOutputneeds to be returned,Bodymay return any valid value ofOutput, to be immediately discarded.