Class: ActiveJobDelayedExecution::DelayedExecutionJob

Inherits:
Object
  • Object
show all
Defined in:
lib/active_job_delayed_execution/delayed_execution_job.rb

Instance Method Summary collapse

Instance Method Details

#perform(object, public_method_name, *arguments) ⇒ Object



3
4
5
# File 'lib/active_job_delayed_execution/delayed_execution_job.rb', line 3

def perform(object, public_method_name, *arguments)
  object.public_send(public_method_name, *arguments)
end