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
Output
must be the same as template type argumentOutput
of theinput_node
instance in whichBody
object is passed during construction.Apply body to generate next item. Call
fc.stop()
when new element can not be generated. SinceOutput
needs to be returned,Body
may return any valid value ofOutput
, to be immediately discarded.