IBM Integration Bus, Version 10.0.0.5 Operating Systems: AIX, HP-Itanium, Linux, Solaris, Windows, z/OS


cniDeleteNodeContext

This function deletes any context for an instance of a user-defined node object. It is called by the integration node whenever an instance of a node object is destroyed, when a message flow is deleted, or when a configuration is redeployed.

A message flow node might also be deleted when reconfiguring or redeploying an integration node.

The responsibilities of the node are to:
  1. Release all node instance specific data areas (such as context) that were acquired at construction or during node processing.
  2. Release all additional resources that might have been acquired for the processing of the node.
Defined In Type Member
CNI_VFT Optional iFpDeleteNodeContext

Syntax

void cniDeleteNodeContext(CciContext* context);

Parameters

context
The address of the context for the instance of the node, as created and returned by the cniCreateNodeContext function (input).

Example

void _deleteNodeContext(
  CciContext* context
){
  static char* functionName = (char *)"_deleteNodeContext()";

  return;
}

as07440_.htm | Last updated 2016-06-25 08:08:11