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


Node.js stream.Readable.pause()用法及代碼示例


readable.pause()

添加於:v0.9.4

readable.pause() 方法將導致處於流動模式的流停止發出 'data' 事件,從而退出流動模式。任何可用的數據都將保留在內部緩衝區中。

const readable = getReadableStreamSomehow();
readable.on('data', (chunk) => {
  console.log(`Received ${chunk.length} bytes of data.`);
  readable.pause();
  console.log('There will be no additional data for 1 second.');
  setTimeout(() => {
    console.log('Now data will start flowing again.');
    readable.resume();
  }, 1000);
});

如果有 'readable' 事件偵聽器,則 readable.pause() 方法無效。

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 stream.Readable.pause()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。