Propiedad Node.js Stream writable.destroyed

La propiedad writable.destroyed es una interfaz de programación de aplicaciones incorporada del módulo Stream que se utiliza para comprobar si se llama o no al método writable.destroy().

Sintaxis:

writable.destroyed

Valor devuelto: esta propiedad devuelve verdadero si se llama al método writable.destroy() antes de que devuelva falso.

Los siguientes ejemplos ilustran el uso de la propiedad writable.destroyed en Node.js:

Ejemplo 1:

// Node.js program to demonstrate the     
// writable.distroyed Property
  
// Accessing stream module
const stream = require('stream');
  
// Creating a stream and creating 
// a write function
const writable = new stream.Writable({
  
  // Write function with its 
  // parameters
  write: function(chunk, encoding, next) {
  
    // Converting the chunk of
    // data to string
    console.log(chunk.toString());
    next();
  }
});
  
// Writing data
writable.write('hi');
  
// Again writing some data
writable.write('hello');
  
// Calling destroy function
writable.destroy();
  
// Calling the Property
writable.destroyed;

Producción:

hi
hello
true

Ejemplo 2:

// Node.js program to demonstrate the     
// writable.distroyed Property
  
// Accessing stream module
const stream = require('stream');
  
// Creating a stream and creating 
// a write function
const writable = new stream.Writable({
  
  // Write function with its 
  // parameters
  write: function(chunk, encoding, next) {
  
    // Converting the chunk of
    // data to string
    console.log(chunk.toString());
    next();
  }
});
  
// Writing data
writable.write('hi');
  
// Again writing some data
writable.write('hello');
  
// Calling the Property
writable.destroyed;

Producción:

hi
hello
false

En el ejemplo anterior, la salida es falsa ya que el método writable.destroy() no se llama antes de llamar a la propiedad writable.destroyed.

Referencia: https://nodejs.org/api/stream.html#stream_writable_destroyed

Publicación traducida automáticamente

Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *