Releases the resources of a business object array.
Syntax
void IreleaseBusinessObjectArray(IBusinessObjectArray releaseObject);
Parameters
Return Values
None.
Notes
When the access client is finished using a business object array, it should the IreleaseBusinessObjectArray() method to free the IBusinessObjectArray object in IBM WebSphere Business Integration Server Express and Express Plus memory.
Example
// Create the array IBusinessObjectArray exampleObjArray = null; exampleObjArray = accessSession.IcreateBusinessObjectArray("CustomerAcct"); // Release the object array accessSession.IreleaseBusinessObjectArray(exampleObjArray);