2012-02-17 18:54:11 -05:00
|
|
|
require 'sidekiq/extensions/generic_proxy'
|
|
|
|
|
|
|
|
module Sidekiq
|
|
|
|
module Extensions
|
|
|
|
##
|
2012-08-16 19:43:01 -04:00
|
|
|
# Adds a 'delay' method to ActiveRecords to offload instance method
|
2012-02-17 18:54:11 -05:00
|
|
|
# execution to Sidekiq. Examples:
|
|
|
|
#
|
|
|
|
# User.recent_signups.each { |user| user.delay.mark_as_awesome }
|
2012-08-16 19:43:01 -04:00
|
|
|
#
|
|
|
|
# Please note, this is not recommended as this will serialize the entire
|
|
|
|
# object to Redis. Your Sidekiq jobs should pass IDs, not entire instances.
|
|
|
|
# This is here for backwards compatibility with Delayed::Job only.
|
2012-02-17 18:54:11 -05:00
|
|
|
class DelayedModel
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(yml)
|
|
|
|
(target, method_name, args) = YAML.load(yml)
|
|
|
|
target.send(method_name, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module ActiveRecord
|
2012-10-17 13:17:19 -04:00
|
|
|
def delay(options={})
|
|
|
|
Proxy.new(DelayedModel, self, options)
|
2012-02-17 18:54:11 -05:00
|
|
|
end
|
2012-10-17 13:17:19 -04:00
|
|
|
def delay_for(interval, options={})
|
|
|
|
Proxy.new(DelayedModel, self, options.merge('at' => Time.now.to_f + interval.to_f))
|
2012-05-25 23:21:42 -04:00
|
|
|
end
|
2012-11-08 12:05:11 -05:00
|
|
|
def delay_until(timestamp, options={})
|
|
|
|
Proxy.new(DelayedModel, self, options.merge('at' => timestamp.to_f))
|
|
|
|
end
|
2012-02-17 18:54:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2012-03-10 15:30:15 -05:00
|
|
|
end
|