2012-08-16 19:43:01 -04:00
|
|
|
require 'sidekiq/extensions/generic_proxy'
|
|
|
|
|
|
|
|
module Sidekiq
|
|
|
|
module Extensions
|
|
|
|
##
|
|
|
|
# Adds a 'delay' method to all Classes to offload class method
|
|
|
|
# execution to Sidekiq. Examples:
|
|
|
|
#
|
|
|
|
# User.delay.delete_inactive
|
|
|
|
# Wikipedia.delay.download_changes_for(Date.today)
|
|
|
|
#
|
|
|
|
class DelayedClass
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(yml)
|
|
|
|
(target, method_name, args) = YAML.load(yml)
|
|
|
|
target.send(method_name, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Klass
|
2012-10-17 13:17:19 -04:00
|
|
|
def delay(options={})
|
|
|
|
Proxy.new(DelayedClass, self, options)
|
2012-08-16 19:43:01 -04:00
|
|
|
end
|
2012-10-17 13:17:19 -04:00
|
|
|
def delay_for(interval, options={})
|
|
|
|
Proxy.new(DelayedClass, self, options.merge('at' => Time.now.to_f + interval.to_f))
|
2012-08-16 19:43:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-30 12:09:42 -04:00
|
|
|
Module.send(:include, Sidekiq::Extensions::Klass)
|