Repository is archived
No commit activity in last 3 years
No release in over 3 years
Use different ActiveJob adapters for different jobs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
>= 0
~> 3.1
~> 1.1

Runtime

 Project Readme

This project is not actively maintained by GoCardless, use at your own risk!

ActiveJob::Multiq

Use different queue adapters for different jobs.

Installation

# Gemfile
gem 'activejob-multiq'
bundle install

Usage

ActiveJob::Base.queue_adapter = :que

# Something important to enqueue with Que
class ChargeCard < ActiveJob::Base
  queue_as :money_things

  def perform(card, amount)
    card.charge(amount)
  end
end

# Something unimportant, to enqueue with Sucker Punch, unless we're in the test
# environment (in which case you'll probably want to use :test or :inline for
# everything)
class RecordAnalytics < ActiveJob::Base
  include ActiveJob::Multiq

  queue_as :noone_cares
  queue_with :sucker_punch, unless: -> { Rails.env.test? }

  def perform(event)
    AnalyticsService.record(event)
  end
end

Contributing

  1. Fork it ( https://github.com/gocardless/activejob-multiq/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request