verifIsBatchRunProcess
verifIsBatchRunProcess( ) => t / nil
Description
Returns t if the code is currently running in a remote child process for ADE Verifier. You can use this function in your
Arguments
Value Returned
Examples
The following example shows how to use this function.
In Virtuoso CIW:
axlIsICRPProcess( )
=> nil
In the.cdsinitfile:
if(verifIsBatchRunProcess() then
info("## Is batch run process ##\n")
;; Do something for batch run here
else
info("## Is not batch run process ##\n")
;; Do something for non-batch run here
)
Related Topics
Verifier Session and Setup Functions
Return to top