Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Interaction Layer » Iso11783IL_OPDeleteObjectPool

Iso11783IL_OPDeleteObjectPool

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long Iso11783IL_OPDeleteObjectPool(); // form 1
long Iso11783IL_OPDeleteObjectPool(dbNode implement); // form 2

Description

The function sends the Delete Object Pool message to the connected Virtual Terminal. The simulated node neither clears the loaded Object Pool nor stops to send the Working Set Maintenance message to the Virtual Terminal. For simultaneous clearing of the loaded Object Pool and stopping the Working Set Maintenance message, call the Iso11783IL_OPDeactivate() instead.

Parameters

  • implement: Simulation node to apply the function.

Return Values

  • = 0: Function has been executed successfully
  • < 0: An error has occurred, see error codes

Example

Example Form 2
long result;
result = Iso11783IL_OPDeleteObjectPool(Sprayer);
if (result < 0)
{
  TestStepFail("Failed to send the Delete Object Pool mesage");
}