Application Programming Interface Guide > Built-in Procedures > Procedures Reference > Pause
 
Pause
Specify a sleep time, in milliseconds, for script execution. A value of less than zero is treated as zero.
Location
/lib/util/
Syntax
pause (IN timeInMilliSeconds INTEGER)
Input
timeInMilliSeconds: The number of milliseconds to pause.
Outputs
N/A
Exceptions
N/A
Example
PROCEDURE proc6()
BEGIN
CALL log('pausing for 3 secs');
CALL pause(3000);
CALL log('pause completed');
END