Class: WebFetch::Response
- Inherits:
-
Object
- Object
- WebFetch::Response
- Defined in:
- lib/web_fetch/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#error ⇒ Object
readonly
Returns the value of attribute error.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#response_time ⇒ Object
readonly
Returns the value of attribute response_time.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#uid ⇒ Object
readonly
Returns the value of attribute uid.
Instance Method Summary collapse
- #complete? ⇒ Boolean
-
#initialize(options = {}) ⇒ Response
constructor
A new instance of Response.
- #pending? ⇒ Boolean
- #success? ⇒ Boolean
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( = {}) @pending = .fetch(:pending, false) return if pending? @body = .fetch(:body) @headers = .fetch(:headers) @status = .fetch(:status) @request = Request.from_hash(.fetch(:request)) @success = .fetch(:success) @error = .fetch(:error) @uid = .fetch(:uid) @response_time = .fetch(:response_time) end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
5 6 7 |
# File 'lib/web_fetch/response.rb', line 5 def body @body end |
#error ⇒ Object (readonly)
Returns the value of attribute error.
5 6 7 |
# File 'lib/web_fetch/response.rb', line 5 def error @error end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
5 6 7 |
# File 'lib/web_fetch/response.rb', line 5 def headers @headers end |
#request ⇒ Object (readonly)
Returns the value of attribute request.
5 6 7 |
# File 'lib/web_fetch/response.rb', line 5 def request @request end |
#response_time ⇒ Object (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 |
#status ⇒ Object (readonly)
Returns the value of attribute status.
5 6 7 |
# File 'lib/web_fetch/response.rb', line 5 def status @status end |
#uid ⇒ Object (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 |