All, There is currently no standard way to remove a pipe set between 2 streams. Is there any (simple) solution/module to achieve that?
The problem I am running into is as follow: streamA.pipe( streamB ) At some point, I need to change the target of streamA from streamB to streamC but without killing streamA (it is an expensive to setup connection). Something along the lines of: streamA.unpipe( streamB ) streamA.pipe( streamC ) I have tried hacking the Stream class but without any satisfactory result... Any idea? Cheers, Pierre -- 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
