Class: ConcurrentDownloader::Response
- Inherits:
-
Object
- Object
- ConcurrentDownloader::Response
- Defined in:
- lib/concurrent_downloader/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(data = {}) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(data = {}) ⇒ Response
Returns a new instance of Response.
8 9 10 11 12 |
# File 'lib/concurrent_downloader/response.rb', line 8 def initialize(data={}) @body = data[:body] @status = data[:status] @headers = data[:headers] end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
3 4 5 |
# File 'lib/concurrent_downloader/response.rb', line 3 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
3 4 5 |
# File 'lib/concurrent_downloader/response.rb', line 3 def headers @headers end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
3 4 5 |
# File 'lib/concurrent_downloader/response.rb', line 3 def status @status end |