AsyncNodeBody¶
[req.async_node_body]
A type Body satisfies the AsyncNodeBody if it meets the following requirements:
AsyncNodeBody Requirements: Pseudo-Signature, Semantics
-
Body::~Body() Destructor.
-
void
operator=(const B&)¶ Assignment.
-
void
Body::operator()(const Input &v, GatewayType &gateway)¶ Requirements:
The
Inputtype must be the same as theInputtemplate type argument of theasync_nodeinstance in whichBodyobject is passed during construction.The
GatewayTypetype must be the same as thegateway_typemember type of theasync_nodeinstance in whichBodyobject is passed during construction.
The input value
vis submitted by the flow graph to an external activity. The gateway interface allows the external activity to communicate with the enclosing flow graph.