ruby on rails - Schedule at a specific time with delayed job -


is there way schedule job @ specific time delayed_job through "delay" method, not through handle_asynchronously? like:

  class.delay.method(param), :run_at => proc.new {time} 

figured out. can run delayed_job passing run_at param delay.

  class.delay(run_at: 5.hours.from_now).method(param) 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -