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

def initialize(block, input = nil)

@parameter input [Readable] The input stream, if known.
@parameter block [Proc] The block that generates the body.

Initialize the body with the given block and input.
def initialize(block, input = nil)
	@block = block
	@input = input
	@output = nil
end