class Sidekiq::Client
@api private
Public Instance Methods
raw_push(payload)
click to toggle source
# File lib/sidekiq/overrides/client.rb, line 9 def raw_push(payload) if Thread.current[:tbatch] Thread.current[:tbatch].job_list << payload.pop true else _raw_push(payload) end end
Also aliased as: _raw_push