class Jimson::BatchClient
Public Class Methods
new(helper)
click to toggle source
# File lib/jimson/client.rb, line 137 def initialize(helper) @helper = helper end
Public Instance Methods
method_missing(sym, *args, &block)
click to toggle source
# File lib/jimson/client.rb, line 141 def method_missing(sym, *args, &block) request = Jimson::Request.new(sym.to_s, args) @helper.push_batch_request(request) end