mirror of https://github.com/nodejs/node.git
doc: Update to reflect new _read() interface
parent
16ddc545bd
commit
13c8bc8917
|
@ -169,7 +169,8 @@ source.onend = function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
// _read will be called when the stream wants to pull more data in
|
// _read will be called when the stream wants to pull more data in
|
||||||
stream._read = function(size, cb) {
|
// the advisory size argument is ignored in this case.
|
||||||
|
stream._read = function(n) {
|
||||||
source.readStart();
|
source.readStart();
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue