Sha256: 028d4790f484099d5eada9d3447a3155ccf6ed525528a301741128e5498ef239

Contents?: true

Size: 1.2 KB

Versions: 49

Compression:

Stored size: 1.2 KB

Contents

require 'qu'

module ActiveJob
  module QueueAdapters
    # == Qu adapter for Active Job
    #
    # Qu is a Ruby library for queuing and processing background jobs. It is
    # heavily inspired by delayed_job and Resque. Qu was created to overcome
    # some shortcomings in the existing queuing libraries.
    # The advantages of Qu are: Multiple backends (redis, mongo), jobs are
    # requeued when worker is killed, resque-like API.
    #
    # Read more about Qu {here}[https://github.com/bkeepers/qu].
    #
    # To use Qu set the queue_adapter config to +:qu+.
    #
    #   Rails.application.config.active_job.queue_adapter = :qu
    class QuAdapter
      class << self
        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

        def enqueue_at(job, timestamp, *args) #:nodoc:
          raise NotImplementedError
        end
      end

      class JobWrapper < Qu::Job #:nodoc:
        def initialize(job_data)
          @job_data  = job_data
        end

        def perform
          Base.execute @job_data
        end
      end
    end
  end
end

Version data entries

49 entries across 48 versions & 8 rubygems

Version Path
activejob-4.2.11.3 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.11.2 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.11.1 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.11 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.10 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.10.rc1 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.9 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.9.rc2 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.9.rc1 lib/active_job/queue_adapters/qu_adapter.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activejob-4.2.8/lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.8 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.8.rc1 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.7.1 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.7 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.7.rc1 lib/active_job/queue_adapters/qu_adapter.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activejob-4.2.6/lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.6 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.6.rc1 lib/active_job/queue_adapters/qu_adapter.rb
activejob-4.2.5.2 lib/active_job/queue_adapters/qu_adapter.rb
activejob-lock-0.0.2 rails/activejob/lib/active_job/queue_adapters/qu_adapter.rb