module Protocol::HTTP::Body::Streamable

def self.request(&block)

@returns [RequestBody] The streaming request body.
@parameter block [Proc] The block that generates the body.

Generate a new streaming request body using the given block to generate the body.
def self.request(&block)
	RequestBody.new(block)
end