Sha256: ed627d6445723c231acb0cf300c41813fd4ee19cd4809e38d0f467ed4581776d
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
require 'active_support/basic_object' module Delayed class DelayProxy < ActiveSupport::BasicObject def initialize(target, options) @target = target @options = options end def method_missing(method, *args) Job.create @options.merge( :payload_object => PerformableMethod.new(@target, method.to_sym, args) ) end end module MessageSending def delay(options = {}) DelayProxy.new(self, options) end alias __delay__ delay def send_later(method, *args) warn "[DEPRECATION] `object.send_later(:method)` is deprecated. Use `object.delay.method" __delay__.__send__(method, *args) end def send_at(time, method, *args) warn "[DEPRECATION] `object.send_at(time, :method)` is deprecated. Use `object.delay(:run_at => time).method" __delay__(:run_at => time).__send__(method, *args) end module ClassMethods def handle_asynchronously(method) aliased_method, punctuation = method.to_s.sub(/([?!=])$/, ''), $1 with_method, without_method = "#{aliased_method}_with_delay#{punctuation}", "#{aliased_method}_without_delay#{punctuation}" define_method(with_method) do |*args| delay.__send__(without_method, *args) end alias_method_chain method, :delay end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
delayed_job-2.1.0.pre | lib/delayed/message_sending.rb |