Timeout on client side == Description == The functions described in this page implement client //timeouts//. == Synopsis == === Client === (timeout duration thunk) (after duration thunk) == Client Definitions == === ++(timeout int proc)++ === timeout ^ arguments ^ type ^ description ^ | int | integer | A interval in milli-seconds. | | proc | procedure | The function to executed when interval expires. | Invokes periodically ++proc++, wait ++int++ milli-seconds between each call. Keep calling ++proc++ until it returns ++#f++. === ++(after int proc)++ === after ^ arguments ^ type ^ description ^ | int | integer | A interval in milli-seconds. | | proc | procedure | The function to executed when interval expires. | Invokes **once** ++proc++ after ++int++ milli-seconds. == See also == timeout, after