當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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'事件。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。