The 'pause' Event in a Readable Stream is emitted when stream.pause() is being called and readableFlowing property is not false.
Syntax:
javascript
Output:
javascript
Output:
Event: 'pause'Return Value: It is emitted if readable.pause() is being called else it is not emitted. Below examples illustrate the use of pause event in Node.js: Example 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....Example 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.... GeeksforGeeksHere, pause() method is not called so pause event is not emitted. Reference: https://nodejs.org/api/stream.html#stream_event_pause