Sha256: d0d65ebd6e3e0d3b94117e472de072ca90dab18245eb9851fd27cc058947cee4

Contents?: true

Size: 565 Bytes

Versions: 5

Compression:

Stored size: 565 Bytes

Contents

module Kangaroo
  module Util
    class Proxy::Report < Proxy
      # Initiate report generation
      #
      # @param object
      # @param ids
      # @param datas
      # @param context
      # @return id to check status on/get report
      def report object, ids, datas = {}, context = {}
        call! :report, object, ids, data, context
      end

      # Check status on/get report by id
      #
      # @param id
      # @return [Hash] report state, report result and format
      def report_get id
        call! report_get, id
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kangaroo-0.1.0.alpha1 lib/kangaroo/util/proxy/report.rb
kangaroo-0.0.3 lib/kangaroo/util/proxy/report.rb
kangaroo-0.0.2 lib/kangaroo/util/proxy/report.rb
kangaroo-0.0.1.pre2 lib/kangaroo/util/proxy/report.rb
kangaroo-0.0.1.pre lib/kangaroo/util/proxy/report.rb