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


Node.js Readable Stream pause事件用法及代碼示例


當調用 stream.pause() 並且 readableFlowing 屬性不為 false 時,會發出可讀流中的 ‘pause’ 事件。

用法:

Event:'pause'

返回值:如果 readable.pause() 正在被調用,則它會被發出,否則它不會被發出。

下麵的例子說明了在 Node.js 中暫停事件的使用:

範例1:




// Node.js program to demonstrate the     
// readable pause event
  
// Including fs module
const fs = require('fs');
  
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
readable.on('data', (chunk) => {
  console.log(`${chunk}`);
});
   
// Handling pause event
readable.on("pause", () => {
    console.log("pause emitted!");
});
  
// Calling pause method
readable.pause();
console.log("Program ends....");

輸出:

pause emitted!
Program ends....

範例2:


// Node.js program to demonstrate the     
// readable pause event
  
// Including fs module
const fs = require('fs');
  
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
readable.on('data', (chunk) => {
  console.log(`${chunk}`);
});
   
// Handling pause event
readable.on("pause", () => {
    console.log("pause emitted!");
});
  
console.log("Program ends....");

輸出:

Program ends....
GeeksforGeeks

此處,未調用 pause() 方法,因此未發出暫停事件。

參考: https://nodejs.org/api/stream.html#stream_event_pause




相關用法


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