class Sr::Jimson::BatchClient

Public Class Methods

new(helper) click to toggle source
# File lib/sr/jimson/client.rb, line 136
def initialize(helper)
  @helper = helper
end

Public Instance Methods

method_missing(sym, *args, &block) click to toggle source
# File lib/sr/jimson/client.rb, line 140
def method_missing(sym, *args, &block)
  request = Sr::Jimson::Request.new(sym.to_s, args)
  @helper.push_batch_request(request)
end