Module: Delayed::MessageSendingClassMethods

Included in:
Module
Defined in:
lib/delayed/message_sending.rb

Instance Method Summary collapse

Instance Method Details

#handle_asynchronously(method, opts = {}) ⇒ Object

rubocop:disable Metrics/PerceivedComplexity



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/delayed/message_sending.rb', line 24

def handle_asynchronously(method, opts = {}) # rubocop:disable Metrics/PerceivedComplexity
  aliased_method = method.to_s.sub(/([?!=])$/, '')
  punctuation = $1 # rubocop:disable Style/PerlBackrefs
  with_method = "#{aliased_method}_with_delay#{punctuation}"
  without_method = "#{aliased_method}_without_delay#{punctuation}"
  define_method(with_method) do |*args, **kwargs|
    curr_opts = opts.clone
    curr_opts.each_key do |key|
      next unless (val = curr_opts[key]).is_a?(Proc)

      curr_opts[key] = if val.arity == 1
                         val.call(self)
                       else
                         val.call
                       end
    end
    delay(curr_opts).__send__(without_method, *args, **kwargs)
  end

  alias_method without_method, method
  alias_method method, with_method

  if public_method_defined?(without_method)
    public method
  elsif protected_method_defined?(without_method)
    protected method
  elsif private_method_defined?(without_method)
    private method
  end
end