Goto: 4C Home | 4C Docs | System PCLs List sys.get_timeoutv()

sys.get_timeoutv()

Purpose:
sys.get_timeoutv() returns the timeout value for any server/client session/program timeout.
Usage:
oldtimeoutv = sys.get_timeoutv(TIMEOUT_TYPE);
Arguments:

TIMEOUT_TYPE must be one of
Returns:
0 - there is no timeout defined for TIMEOUT_TYPE.
> 0 - The #seconds associated with TIMEOUT_TYPE.
Where Used:
sys.get_timeoutv() can be called from anywhere.
Example:
The demo programs that catch timeouts have examples. See:
Description:
sys.get_timeoutv() returns the #seconds for for the specified timeout type.
Bugs/Features/Comments:
See Also: sys.set_timeout()
sys.get_timeoutp()
sys.set_alarm()
sys.lock_clientws()
sys.exit_client()
sys.exit_4c()


Back to Top