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


Node.js stream.Writable 'unpipe'事件用法及代码示例


事件:'unpipe'

添加于:v0.9.4

参数

'unpipe' 事件在 Readable 流上调用 stream.unpipe() 方法时发出,从其目标集中删除此 Writable

如果 Writable 流在 Readable 流通过管道进入其中时发出错误,也会发出此消息。

const writer = getWritableStreamSomehow();
const reader = getReadableStreamSomehow();
writer.on('unpipe', (src) => {
  console.log('Something has stopped piping into the writer.');
  assert.equal(src, reader);
});
reader.pipe(writer);
reader.unpipe(writer);

相关用法


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