WebSphere Message Broker, Version 8.0.0.7
Operating Systems: AIX, HP-Itanium, Linux, Solaris, Windows, z/OS
See information about the latest product version
See information about the latest product version
cniDeleteNodeContext
This function deletes any context for an instance of a user-defined node object. It is called by the broker 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 a broker.
The responsibilities of the node are
to:
- Release all node instance specific data areas (such as context) that were acquired at construction or during node processing.
- 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;
}