I'm trying to instantiate a Writer with a BzipOutput? as its parameter, but when I use the Writer, it doesn't write compressed data, but instead it writes the same file that it did when I was using a simple FileConduit?.output.
http://paste.dprogramming.com/dpg35zd3
I'd like to write compressed data without having to directly use BzipOutput?.write. That's a low-level function and very messy to deal with. I'm hoping there is some way to use one of the other classes as a wrapper around BzipOutput? and Input.
And of course, Reader + BzipInput? has the same problem.