Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
hiddentrue
Causes the system current thread to sleep (suspends system processing) for the specified interval.

Causes the system current thread to sleep (suspends system processing) for the specified interval. Do not use it in the UI processing (like synchronous post-functions) otherwise users will be forced to wait.

...

Table plus
applyColStyleToCelltrue
columnTypess,s,s,s
heading0
multiplefalse
enableSortingfalse

Parameter name

Type

Required

Description

Interval

Integerinterval

Yes

Duration of time in millisecondsas interval.

Return Type

None

Examples

Example 1

Code Block
languagejs
sysSleep(1000"1s");

As a result system processing the executing thread is suspended for 1 second.

...

Code Block
languagejs
use "system";
sleep(10000"10s");

As a result system processing the executing thread is suspended for 10 seconds.

...