flushProc

Top  Previous  Next

Check wether a proc should be flushed. This function must be called at the end of each step in a Proc, to check if the proc flush condition (set with the invoke function that started the proc) has been verified and thus the proc should return control to the Job.

Syntax

flushProc()

Parameters

None.

Return code

true if the proc execution should be stopped and the control returned to the job.

Sample

if (flushProc()) {
       return parms.getReturnCode();
}