The system function SysLib.wait suspends execution for the specified number of seconds.
SysLib.wait(timeInSeconds BIN(9,2) in)
You can use SysLib.wait when two asynchronously running programs need to communicate through a record in a shared file or database. One program might need to suspend processing until the other program updates the information in the shared record.
SysLib.wait(15); // waits for 15 seconds
Related concepts
Syntax diagram for EGL functions
Related reference
EGL library SysLib