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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。