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


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


readable.isPaused()方法是Stream模块的内置应用程序编程接口,用于检查Readable流的当前运行状态。

用法:

readable.isPaused()

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


返回值:如果Readable状态暂停,则返回true,否则返回false。

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

范例1:

// Node.js program to demonstrate the      
// readable.isPaused() method   
  
// Include stream module 
const stream = require('stream'); 
  
// Constructing readable stream 
const readable = new stream.Readable(); 
  
// Calling isPaused method 
readable.isPaused();

输出:

false

范例2:

// Node.js program to demonstrate the      
// readable.isPaused() method   
  
// Include stream module 
const stream = require('stream'); 
  
// Constructing readable stream 
const readable = new stream.Readable(); 
  
// Calling isPaused method 
readable.isPaused(); 
  
// Calling the pause() function 
// to pause readable state 
readable.pause(); 
  
// Again calling isPaused to check 
// if its paued or not 
readable.isPaused();

输出:

true

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



相关用法


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