2013-05-04 20:50:24 -07:00
|
|
|
require 'yaml'
|
|
|
|
|
2012-02-17 15:54:11 -08:00
|
|
|
module Sidekiq
|
|
|
|
module Extensions
|
2012-07-20 20:11:33 -07:00
|
|
|
class Proxy < BasicObject
|
2012-10-17 10:17:19 -07:00
|
|
|
def initialize(performable, target, options={})
|
2012-02-17 15:54:11 -08:00
|
|
|
@performable = performable
|
|
|
|
@target = target
|
2012-10-17 10:17:19 -07:00
|
|
|
@opts = options
|
2012-02-17 15:54:11 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def method_missing(name, *args)
|
|
|
|
# Sidekiq has a limitation in that its message must be JSON.
|
|
|
|
# JSON can't round trip real Ruby objects so we use YAML to
|
|
|
|
# serialize the objects to a String. The YAML will be converted
|
|
|
|
# to JSON and then deserialized on the other side back into a
|
|
|
|
# Ruby object.
|
|
|
|
obj = [@target, name, args]
|
2012-10-17 10:17:19 -07:00
|
|
|
@performable.client_push({ 'class' => @performable, 'args' => [::YAML.dump(obj)] }.merge(@opts))
|
2012-02-17 15:54:11 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|