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

def stream(body)

Stream the response body into the block's input.
def stream(body)
	body&.each do |chunk|
		@input.write(chunk)
	end
rescue => error
ensure
	@input.close_write(error)
end