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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。