# File lib/em-http/request.rb, line 5
    def self.new(uri, options={})
      connopt = HttpConnectionOptions.new(uri, options)

      c = HttpConnection.new
      c.connopts = connopt
      c.uri = uri
      c
    end