method

enqueue

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: SidekiqAdapter
enqueue(job) 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/sidekiq_adapter.rb, line 21
      def enqueue(job) # :nodoc:
        job.provider_job_id = JobWrapper.set(
          wrapped: job.class,
          queue: job.queue_name
        ).perform_async(job.serialize)
      end
Register or log in to add new notes.