1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/queueing
Aaron Patterson 3b3ca13307 adding Rails::Queueing::Container
This allows us to do:

In your configuration:
Rails.queue[:image_queue] = SomeQueue.new
Rails.queue[:mail_queue]  = SomeQueue.new

In your app code:
Rails.queue[:mail_queue].push MailJob.new

Both jobs pushed to the same default queue
Rails.queue.push DefaultJob.new
Rails.queue[:default].push DefaultJob.new
2012-07-19 12:09:39 -07:00
..
container_test.rb adding Rails::Queueing::Container 2012-07-19 12:09:39 -07:00
test_queue_test.rb Make TestQueueTest work with marshalling queue 2012-07-03 13:03:48 +01:00
threaded_consumer_test.rb Allow overriding exception handling in threaded consumer 2012-05-04 09:11:44 -03:00