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


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


事件:'pipe'

添加于:v0.9.4

参数

'pipe' 事件在可读流上调用 stream.pipe() 方法时发出,将此可写添加到其目标集。

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

相关用法


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