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


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