Method: HTTPX::Connection#timeout

Defined in:
lib/httpx/connection.rb

#timeoutObject



240
241
242
243
244
245
246
# File 'lib/httpx/connection.rb', line 240

def timeout
  return @timeout if defined?(@timeout)

  return @options.timeout.connect_timeout if @state == :idle

  @options.timeout.operation_timeout
end