Sha256: 2f515562dfc6400090e268063aa8acb22cf6414ff3e1b713c1f3bb3008998a55
Contents?: true
Size: 385 Bytes
Versions: 5
Compression:
Stored size: 385 Bytes
Contents
module Riak::TimeSeries class Read attr_accessor :key attr_reader :client attr_reader :table_name def initialize(client, table_name) @client = client @table_name = table_name end def read! client.backend do |be| op = be.time_series_get_operator(client.convert_timestamp) op.get(table_name, key) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems