mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
e12bf878fa
Replaced with `__send__` from std lib * `send` can now be overridden to be more semantically meaningful * `message.send(user_id)` as opposed to `message.send_message(user_id)` * `__send__` makes it clear that the reflective version is intended
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
require 'sidekiq/extensions/generic_proxy'
|
|
|
|
module Sidekiq
|
|
module Extensions
|
|
##
|
|
# Adds 'delay', 'delay_for' and `delay_until` methods to ActiveRecord to offload instance method
|
|
# execution to Sidekiq. Examples:
|
|
#
|
|
# User.recent_signups.each { |user| user.delay.mark_as_awesome }
|
|
#
|
|
# 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.
|
|
class DelayedModel
|
|
include Sidekiq::Worker
|
|
|
|
def perform(yml)
|
|
(target, method_name, args) = YAML.load(yml)
|
|
target.__send__(method_name, *args)
|
|
end
|
|
end
|
|
|
|
module ActiveRecord
|
|
def sidekiq_delay(options={})
|
|
Proxy.new(DelayedModel, self, options)
|
|
end
|
|
def sidekiq_delay_for(interval, options={})
|
|
Proxy.new(DelayedModel, self, options.merge('at' => Time.now.to_f + interval.to_f))
|
|
end
|
|
def sidekiq_delay_until(timestamp, options={})
|
|
Proxy.new(DelayedModel, self, options.merge('at' => timestamp.to_f))
|
|
end
|
|
alias_method :delay, :sidekiq_delay
|
|
alias_method :delay_for, :sidekiq_delay_for
|
|
alias_method :delay_until, :sidekiq_delay_until
|
|
end
|
|
|
|
end
|
|
end
|