class LHC::Request

def create_request

Experimental RBS support (using type sampling data from the type_fusion project).

def create_request: () -> Typhoeus::Request

This signature was generated using 36 samples from 2 applications.

def create_request
  request = Typhoeus::Request.new(
    optionally_encoded_url(options),
    translate_body(typhoeusize(options))
  )
  request.on_headers do
    interceptors.intercept(:after_request)
    interceptors.intercept(:before_response)
  end
  request.on_complete { |response| on_complete(response) }
  request
end