当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Http2Stream.setTimeout(msecs, callback)用法及代码示例


http2stream.setTimeout(msecs, callback)

历史
版本变化
v18.0.0

将无效回调传递给 callback 参数现在会抛出 ERR_INVALID_ARG_TYPE 而不是 ERR_INVALID_CALLBACK

v8.4.0

添加于:v8.4.0


参数
const http2 = require('node:http2');
const client = http2.connect('http://example.org:8000');
const { NGHTTP2_CANCEL } = http2.constants;
const req = client.request({ ':path': '/' });

// Cancel the stream if there's no activity after 5 seconds
req.setTimeout(5000, () => req.close(NGHTTP2_CANCEL));

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 Http2Stream.setTimeout(msecs, callback)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。