Class: TheCity::MetricMeasurementValuesReader

Inherits:
ApiReader
  • Object
show all
Defined in:
lib/readers/metric_measurement_values_reader.rb

Instance Attribute Summary

Attributes inherited from ApiReader

#headers

Instance Method Summary collapse

Methods inherited from ApiReader

#load_feed, #rate_limit, #rate_limit_remaining

Constructor Details

#initialize(options = {}, cacher = nil) ⇒ MetricMeasurementValuesReader

Constructor.

Parameters:

  • options (defaults to: {})

    A hash of options for requesting data from the server.

    metric_id is required

  • cacher (CacheAdapter) (defaults to: nil)

    (optional) The cacher to be used to cache data.



10
11
12
13
14
15
16
# File 'lib/readers/metric_measurement_values_reader.rb', line 10

def initialize(options = {}, cacher = nil) 
  metric_id = options.delete(:metric_id)
  @url_data_path = "/metrics/#{metric_id}/measurements/values"
  
  # The object to store and load the cache.
  @cacher = cacher unless cacher.nil?    
end