Uh oh!
There was an error while loading. Please reload this page.
doc: add readable and writable property to Readable and Writable - #23933
doc: add readable and writable property to Readable and Writable#23933dexterleng wants to merge 4 commits into
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Co-Authored-By: dexterleng <34204380+dexterleng@users.noreply.github.com>
dexterleng
commented
Nov 3, 2018
ping @jasnell |
Trott
commented
Nov 4, 2018
@nodejs/streams @nodejs/documentation This could use some reviews. |
mcollina
left a comment
There was a problem hiding this comment.
The default value is slightly different, and the meaning as well. writable is true when it's safe to call write(), and readable is true when it's safe to call read().
The problem is that some of the core and ecosystem streams sets readable or writable to false to take into account a delayed open scenario.
dexterleng
commented
Nov 4, 2018
@mcollina Could you elaborate? In the constructor of Readable and Writable the properties are both true. |
mcollina
commented
Nov 4, 2018
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Trott
commented
Nov 21, 2018
PR-URL: nodejs#23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Trott
commented
Nov 21, 2018
Landed in 16a2b5c. Thanks for the contribution! 🎉 |
PR-URL: #23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: nodejs#23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
MylesBorins
commented
Jan 29, 2019
FWIW this landed with |
PR-URL: #23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #23933 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Issue #21431
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes