VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-stream-readable-destroy-method/

⇱ Node.js Stream readable.destroy() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js Stream readable.destroy() Method

Last Updated : 12 Oct, 2021
The readable.destroy() method is an inbuilt application programming interface of Stream module which is used to destroy the stream. Syntax:
readable.destroy( error )
Parameters: This method accepts single parameter error which is optional and it emits an error while handling error event. Return Value: If this method is used then the stream is destroyed and if the error parameter is passed as an argument then it emits an error event. Below examples illustrate the use of readable.destroy() method in Node.js: Example 1: Output:
Stream destroyed
Example 2: Output:
Stream destroyed
[ 'error' ]
In the above example error event is emitted. Reference: https://nodejs.org/api/stream.html#stream_readable_destroy_error
Comment

Explore