class Protocol::HTTP::Body::Streamable::Output

def initialize(input, block)

@parameter block [Proc] The block that generates the output.
@parameter input [Readable] The input stream.

Initialize the output stream with the given input and block.
def initialize(input, block)
	@output = Writable.new
	@stream = Stream.new(input, @output)
	@block = block
end