method

enqueue_at

rails latest stable - Class: ActiveJob::QueueAdapters::DelayedJobAdapter

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

enqueue_at(job, timestamp)
public

No documentation available.

# File activejob/lib/active_job/queue_adapters/delayed_job_adapter.rb, line 21
        def enqueue_at(job, timestamp) #:nodoc:
          Delayed::Job.enqueue(JobWrapper.new(job.serialize), queue: job.queue_name, run_at: Time.at(timestamp))
        end