response.setTimeout(msecs[, callback])


将套接字的超时值设置为 msecs。如果提供了回调,则将其添加为响应对象上 'timeout' 事件的监听器。

¥Sets the Socket's timeout value to msecs. If a callback is provided, then it is added as a listener on the 'timeout' event on the response object.

如果没有向请求、响应或服务器添加 'timeout' 监听器,则套接字在超时时会被销毁。如果将句柄分配给请求、响应或服务器的 'timeout' 事件,则必须显式处理超时套接字。

¥If no 'timeout' listener is added to the request, the response, or the server, then sockets are destroyed when they time out. If a handler is assigned to the request, the response, or the server's 'timeout' events, timed out sockets must be handled explicitly.