Flowdock
method

enqueue

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: QuAdapter
enqueue(job, *args) 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/qu_adapter.rb, line 20
        def enqueue(job, *args) #:nodoc:
          Qu::Payload.new(klass: JobWrapper, args: [job.serialize]).tap do |payload|
            payload.instance_variable_set(:@queue, job.queue_name)
          end.push
        end
Register or log in to add new notes.