Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upOption to follow Node 0.10 readable stream emit behavior? #74
Comments
This comment has been minimized.
This comment has been minimized.
|
What's your use case? I'd rather not changing the current behavior if possible. |
right9ctrl
closed this
Nov 4, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
UltCombo commentedNov 2, 2014
Right now, when I create a new stream (e.g. through
es.readArray()) it starts emitting data in thenextTick.I'd like it to follow the Node 0.10 behavior, that is, start the stream paused by default and automatically resume it once an
.on('data')listener/.pipe()is attached.Would this be possible/viable to implement for all methods that return a readable stream?