Class: WebFetch::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/web_fetch/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Response



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/web_fetch/response.rb', line 7

def initialize(options = {})
  @pending = options.fetch(:pending, false)
  return if pending?

  @body = options.fetch(:body)
  @headers = options.fetch(:headers)
  @status = options.fetch(:status)
  @request = Request.from_hash(options.fetch(:request))
  @success = options.fetch(:success)
  @error = options.fetch(:error)
  @uid = options.fetch(:uid)
  @response_time = options.fetch(:response_time)
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def body
  @body
end

#errorObject (readonly)

Returns the value of attribute error.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def error
  @error
end

#headersObject (readonly)

Returns the value of attribute headers.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def headers
  @headers
end

#requestObject (readonly)

Returns the value of attribute request.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def request
  @request
end

#response_timeObject (readonly)

Returns the value of attribute response_time.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def response_time
  @response_time
end

#statusObject (readonly)

Returns the value of attribute status.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def status
  @status
end

#uidObject (readonly)

Returns the value of attribute uid.



5
6
7
# File 'lib/web_fetch/response.rb', line 5

def uid
  @uid
end

Instance Method Details

#complete?Boolean



27
28
29
# File 'lib/web_fetch/response.rb', line 27

def complete?
  !pending?
end

#pending?Boolean



21
22
23
24
25
# File 'lib/web_fetch/response.rb', line 21

def pending?
  return false if @pending.nil?

  @pending
end

#success?Boolean



31
32
33
# File 'lib/web_fetch/response.rb', line 31

def success?
  @success
end