Sha256: 4e09ce122d968e660679de882806dd079bbd9ee4b04d917e58f3a51c4a7c705d
Contents?: true
Size: 1.09 KB
Versions: 51
Compression:
Stored size: 1.09 KB
Contents
require 'active_support' class LHS::Record module Batch extend ActiveSupport::Concern module ClassMethods # Process single entries fetched in batches def find_each(options = {}) find_in_batches(options) do |records| records.each do |record| item = LHS::Item.new(record) yield new(LHS::Data.new(item, records._data, self)) end end end # Process batches of entries def find_in_batches(options = {}) raise 'No block given' unless block_given? start = options[:start] || 1 batch_size = options[:batch_size] || LHS::Pagination::Base::DEFAULT_LIMIT params = options[:params] || {} loop do # as suggested by Matz data = request(params: params.merge(limit_key => batch_size, pagination_key => start)) batch_size = data._raw[limit_key] left = data._raw[total_key].to_i - data._raw[pagination_key].to_i - data._raw[limit_key].to_i yield new(data) break if left <= 0 start += batch_size end end end end end
Version data entries
51 entries across 51 versions & 1 rubygems