Shouldn't calling queue on a stream implicitly call pause? The documentation reads that way, but the code and testing do not. Am I just misunderstanding?
My assumption is based on this line from the readme:
through takes care of pause/resume logic if you use this.queue(data) instead of this.emit('data', data).
Shouldn't calling
queue
on a stream implicitly callpause
? The documentation reads that way, but the code and testing do not. Am I just misunderstanding?My assumption is based on this line from the readme:
through
takes care of pause/resume logic if you usethis.queue(data)
instead ofthis.emit('data', data)
.