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

def self.schedule(input, block)

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

Schedule the block to be executed in a fiber.
def self.schedule(input, block)
	self.new(input, block).tap(&:schedule)
end