可读流中的可读.resume()方法用于暂停可再次恢复的数据,然后数据再次开始流动。
用法:
readable.resume()
参数:此方法不接受任何参数。
返回值:如果使用此方法,那么暂停的数据将再次开始流动。
下面的示例说明了Node.js中read.resume()方法的使用:
范例1:
// Node.js program to demonstrate the
// readable.resume() method
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.text");
readable.on('data', (chunk) => {
console.log(`${chunk}`);
});
// Calling pause method
readable.pause();
// Calling resume method
readable.resume();
console.log("Data starts flowing again!!");
输出:
Data starts flowing again!! Hello!!!
范例2:
// Node.js program to demonstrate the
// readable.resume() method
// Include fs module
const fs = require('fs');
// Create readable stream
const readable = fs.createReadStream("input.text");
// Handling data event
readable.on('data', (chunk) => {
console.log(`${chunk}`);
// Calling pause method
readable.pause();
// After this any data will be displayed
// after 3 sec.
console.log('No additional data will be '
+ 'displayed for 3 seconds.');
// Using setTimeout function
setTimeout(() => {
console.log('Now data starts flowing again.');
// Calling resume method
readable.resume();
}, 3000);
});
// Displays that program
// is ended
console.log("Program ends!!");
输出:
Program ends!! Hello!!! No additional data will be displayed for 3 seconds. Now data starts flowing again.
但是,您可以看到在运行时,执行pause()方法后,在3秒钟内将不会显示其他数据。
参考: https://nodejs.org/api/stream.html#stream_readable_resume
相关用法
- node.js Stream writable.end()用法及代码示例
- node.js Stream readable.read()用法及代码示例
- node.js Stream writable.setDefaultEncoding()用法及代码示例
- node.js Stream writable.cork()用法及代码示例
- node.js Stream readable.isPaused()用法及代码示例
- node.js Stream readable.pause()用法及代码示例
- node.js Stream readable.setEncoding()用法及代码示例
- node.js Stream readable.pipe()用法及代码示例
- node.js Stream writable.write()用法及代码示例
- node.js Stream transform.destroy()用法及代码示例
- node.js Stream readable.unpipe()用法及代码示例
- node.js Stream writable.destroy()用法及代码示例
- node.js Stream writable.uncork()用法及代码示例
- node.js Stream readable.destroy()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Stream readable.resume() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。