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


node.js Stream readable.pause()用法及代码示例


可读的.pause()方法是Stream模块的内置应用程序编程接口,用于阻止流模式发出“数据”事件。如果任何可访问的数据将继续存在于内部缓冲区中。

用法:

readable.pause()

参数:此方法不接受任何参数。


返回值:如果使用此方法,则此时将暂停读取数据。

下面的示例说明了Node.js中read.pause()方法的使用:

范例1:

// Node.js program to demonstrate the      
// readable.pause() method   
  
// Including fs module 
const fs = require('fs'); 
  
// Constructing readable stream 
const readable = fs.createReadStream("input.txt"); 
readable.on('data', (chunk) => { 
  console.log(`${chunk}`); 
}); 
  
// Calling pause method 
readable.pause(); 
  
// Checking if paused or not 
readable.isPaused();

输出:

true

范例2:

// Node.js program to demonstrate the      
// readable.pause() method   
  
// Include fs module 
const fs = require('fs'); 
  
// Create readable stream 
const readable = fs.createReadStream("input.txt"); 
  
// Handling data event 
readable.on('data', (chunk) => { 
  console.log(`Received ${chunk.length} bytes of data.`); 
  
  // Calling pause method 
  readable.pause(); 
  
  // After this any data will be displayed  
  // after 1 sec. 
  console.log('No further data will be displayed for 1 second.'); 
  
  // Using setTimeout function 
  setTimeout(() => { 
    console.log('Now data starts flowing again.'); 
    readable.resume(); 
  }, 1000); 
}); 
  
// Displays that program  
// is ended 
console.log("Program ends!!");

输出:

Program ends!!
Received 5 bytes of data.
No further data will be displayed for 1 second.
Now data starts flowing again.

但是,您可以看到在运行时,在执行pause()方法之后,将在1秒钟内不再显示其他数据。

参考: https://nodejs.org/api/stream.html#stream_readable_pause



相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Stream readable.pause() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。