cciGetTargetNode

This function returns a handle to the downstream node of a given connection.

Syntax

CciNode*  cciGetTargetNode(int*                    returnCode,
                                                 CciConnection * connection);

Parameters

returnCode (output)
Receives the return code from the function (output).
connection
This is a handle to a connection on an input terminal of the requested node.

Return values

A handle to the node that is on the target side of the connection.

Example

void myPropagatedMessageCallback(
                        CciMessage*    message,
                        CciMessage*    localEnvironment,
                        CciMessage*    exceptionList,
                        CciMessage*    environment,
                        CciConnection* connection){
   …
   …

   CciNode* targetNode = cciGetTargetNode(&rc,
                                          connection);
Related concepts
Developing user exits
Related tasks
Developing a user exit