Previous Topic: UNBIND Return CodesNext Topic: WAIT Return Code


EPI WAIT—Delay Rule Processing

The EPI WAIT command in a REXX program or an AOF request rule delays processing of that rule or program for a specified number of seconds. Request rules are the only rules that can use this command.

EPI WAIT has the following format:

ADDRESS EPI "WAIT keyword"
{seconds}
seconds

Defines the wait interval in seconds. You can specify any number of seconds from 0 through 86400 (the number of seconds in 24 hours). The number can be either an integer or a real number with two places to the right of the decimal point.

EPI WAIT Sample Coding Statements

The following sample coding statement pauses processing for 5 seconds:

WAIT 5