On Friday, February 1, 2013 6:37:23 PM UTC+2, Isaac Schlueter wrote:
>
> You should just pipe to them all. 
>
> reader.pipe(writer1); 
> reader.pipe(writer2); 
>

It will just copy the reader stream to all writers. I have something like 
this

reader.on('data', function (x)
{
   if (foo(x)) writer1.write(bar(x))
   if (baz(x)) writer2.write(quux(x))
}

.pipe() at least in its 0.8.x form is of little help here unless you 
suggest to decorate my original reader somehow.

Andy

 

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to