socket.setTimeout(timeout[, callback])
历史
版本 | 变化 |
---|---|
v18.0.0 | 将无效回调传递给 |
v0.1.90 | 添加于:v0.1.90 |
参数
timeout
<number>callback
<Function>- 返回: <net.Socket> 套接字本身。
在套接字上的 timeout
毫秒不活动后将套接字设置为超时。默认情况下 net.Socket
没有超时。
当触发空闲超时时,套接字将收到
事件,但连接不会被切断。用户必须手动调用'timeout'
或socket.end()
来结束连接。socket.destroy()
socket.setTimeout(3000);
socket.on('timeout', () => {
console.log('socket timeout');
socket.end();
});
如果 timeout
为 0,则禁用现有的空闲超时。
可选的 callback
参数将被添加为
事件的一次性侦听器。'timeout'
相关用法
- Node.js net.Server.address()用法及代码示例
- Node.js net.Server.listen()用法及代码示例
- Node.js net.isIP(input)用法及代码示例
- Node.js net.createConnection(options[, connectListener])用法及代码示例
- Node.js net.isIPv6(input)用法及代码示例
- Node.js net.createServer([options][, connectionListener])用法及代码示例
- Node.js net.BlockList.check(address[, type])用法及代码示例
- Node.js net.isIPv4(input)用法及代码示例
- Node.js new assert.AssertionError(options)用法及代码示例
- Node.js new AsyncResource(type[, options])用法及代码示例
- Node.js new stream.Duplex(options)用法及代码示例
- Node.js new stream.Readable([options])用法及代码示例
- Node.js new Console(options)用法及代码示例
- Node.js new URLSearchParams(obj)用法及代码示例
- Node.js new crypto.Certificate()用法及代码示例
- Node.js new stream.Writable([options])用法及代码示例
- Node.js new URLSearchParams(iterable)用法及代码示例
- Node.js new Agent([options])用法及代码示例
- Node.js new vm.SourceTextModule(code[, options])用法及代码示例
- Node.js new stream.Transform([options])用法及代码示例
- Node.js new PerformanceObserver(callback)用法及代码示例
- Node.js new URL(input[, base])用法及代码示例
- Node.js new URLSearchParams(string)用法及代码示例
- Node.js new assert.CallTracker()用法及代码示例
- Node.js ServerHttp2Stream http2stream.pushStream(headers[, options], callback)用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 net.Socket.setTimeout(timeout[, callback])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。