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


Node.js stream.Readable.unpipe([destination])用法及代码示例


readable.unpipe([destination])

添加于:v0.9.4

参数

readable.unpipe() 方法分离先前使用 stream.pipe() 方法附加的 Writable 流。

如果未指定 destination,则所有管道都将被分离。

如果指定了destination,但没有为其设置管道,则该方法不执行任何操作。

const fs = require('node:fs');
const readable = getReadableStreamSomehow();
const writable = fs.createWriteStream('file.txt');
// All the data from readable goes into 'file.txt',
// but only for the first second.
readable.pipe(writable);
setTimeout(() => {
  console.log('Stop writing to file.txt.');
  readable.unpipe(writable);
  console.log('Manually close the file stream.');
  writable.end();
}, 1000);

相关用法


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