method

enqueue_at

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: ResqueAdapter
enqueue_at(job, timestamp) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/queue_adapters/resque_adapter.rb, line 36
      def enqueue_at(job, timestamp) # :nodoc:
        unless Resque.respond_to?(:enqueue_at_with_queue)
          raise NotImplementedError, "To be able to schedule jobs with Resque you need the "              "resque-scheduler gem. Please add it to your Gemfile and run bundle install"
        end
        Resque.enqueue_at_with_queue job.queue_name, timestamp, JobWrapper, job.serialize
      end
Register or log in to add new notes.