File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2566,10 +2566,12 @@ All `Readable` stream implementations must provide an implementation of the
25662566
25672567When [ ` readable._read() ` ] [ ] is called, if data is available from the resource,
25682568the implementation should begin pushing that data into the read queue using the
2569- [ ` this.push(dataChunk) ` ] [ stream-push ] method. ` _read() ` should continue reading
2570- from the resource and pushing data until ` readable.push() ` returns ` false ` . Only
2571- when ` _read() ` is called again after it has stopped should it resume pushing
2572- additional data onto the queue.
2569+ [ ` this.push(dataChunk) ` ] [ stream-push ] method. ` _read() ` will be called again
2570+ after each call to [ ` this.push(dataChunk) ` ] [ stream-push ] once the stream is
2571+ ready to accept more data. ` _read() ` may continue reading from the resource and
2572+ pushing data until ` readable.push() ` returns ` false ` . Only when ` _read() ` is
2573+ called again after it has stopped should it resume pushing additional data into
2574+ the queue.
25732575
25742576Once the [ ` readable._read() ` ] [ ] method has been called, it will not be called
25752577again until more data is pushed through the [ ` readable.push() ` ] [ stream-push ]
You can’t perform that action at this time.
0 commit comments