El método readable.isPaused() es una interfaz de programación de aplicaciones incorporada del módulo Stream que se utiliza para verificar el estado operativo actual de las transmisiones Readable.
Sintaxis:
readable.isPaused()
Parámetros: este método no acepta ningún parámetro.
Valor de retorno: devuelve verdadero si el estado de lectura está en pausa; de lo contrario, devuelve falso.
Los siguientes ejemplos ilustran el uso del método readable.isPaused() en Node.js:
Ejemplo 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();
Producción:
false
Ejemplo 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();
Producción:
true
Referencia: https://nodejs.org/api/stream.html#stream_readable_ispaused
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA