Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 407 Bytes

nodejs-stream-readable-read.md

File metadata and controls

9 lines (8 loc) · 407 Bytes
tags
nodejs
stream
issue

The read method is a way for the stream to fetch next piece of data. This method will be called when stream is ready to process new data.

According to documentation, all Readable stream implementations must provide _read method. Otherwise you will get The _read() method is not implemented error