module Activejob::PerformLater::Mixin

Public Instance Methods

perform_later(*method_names) click to toggle source
# File lib/activejob/perform_later/mixin.rb, line 4
def perform_later(*method_names)
  options = method_names.extract_options!
  if method_names.empty?
    Activejob::PerformLater::Util.proxy_calls(self, options)
  else
    Activejob::PerformLater::Util.perform_methods_later(self, method_names, options)
  end
end