Sha256: ca6ee37b72fd873751b1379389fd66c534fe461f08758385c2624e68a4dcce58

Contents?: true

Size: 1.38 KB

Versions: 20

Compression:

Stored size: 1.38 KB

Contents

require "sneakers"
require "monitor"

module ActiveJob
  module QueueAdapters
    # == Sneakers adapter for Active Job
    #
    # A high-performance RabbitMQ background processing framework for Ruby.
    # Sneakers is being used in production for both I/O and CPU intensive
    # workloads, and have achieved the goals of high-performance and
    # 0-maintenance, as designed.
    #
    # Read more about Sneakers {here}[https://github.com/jondot/sneakers].
    #
    # To use Sneakers set the queue_adapter config to +:sneakers+.
    #
    #   Rails.application.config.active_job.queue_adapter = :sneakers
    class SneakersAdapter
      def initialize
        @monitor = Monitor.new
      end

      def enqueue(job) #:nodoc:
        @monitor.synchronize do
          JobWrapper.from_queue job.queue_name
          JobWrapper.enqueue ActiveSupport::JSON.encode(job.serialize)
        end
      end

      def enqueue_at(job, timestamp) #:nodoc:
        raise NotImplementedError, "This queueing backend does not support scheduling jobs. To see what features are supported go to http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html"
      end

      class JobWrapper #:nodoc:
        include Sneakers::Worker
        from_queue "default"

        def work(msg)
          job_data = ActiveSupport::JSON.decode(msg)
          Base.execute job_data
          ack!
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
activejob-5.1.7 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.7.rc1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.6.2 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.6.1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.6 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.5 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.5.rc1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.4 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.4.rc1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.3 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.3.rc3 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.3.rc2 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.3.rc1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.2 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.2.rc1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.0 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.0.rc2 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.0.rc1 lib/active_job/queue_adapters/sneakers_adapter.rb
activejob-5.1.0.beta1 lib/active_job/queue_adapters/sneakers_adapter.rb