aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-09-13 15:09:15 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2012-09-14 14:10:00 -0700
commit8577687fcb9da20868a5ea50aea36427270d4485 (patch)
tree51fa7cb8e0e153da58a9c65d39a862d7ee7a6c2b /guides
parentae00adecf420703bd13f52ffad23eb417b2cf244 (diff)
downloadrails-8577687fcb9da20868a5ea50aea36427270d4485.tar.gz
rails-8577687fcb9da20868a5ea50aea36427270d4485.tar.bz2
rails-8577687fcb9da20868a5ea50aea36427270d4485.zip
Move queue classes to ActiveSupport
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/configuring.textile b/guides/source/configuring.textile
index 73d6102eac..9c35738bf8 100644
--- a/guides/source/configuring.textile
+++ b/guides/source/configuring.textile
@@ -111,9 +111,9 @@ end
* +config.middleware+ allows you to configure the application's middleware. This is covered in depth in the "Configuring Middleware":#configuring-middleware section below.
-* +config.queue+ configures a different queue implementation for the application. Defaults to +Rails::Queueing::Queue+. Note that, if the default queue is changed, the default +queue_consumer+ is not going to be initialized, it is up to the new queue implementation to handle starting and shutting down its own consumer(s).
+* +config.queue+ configures a different queue implementation for the application. Defaults to +ActiveSupport::SynchronousQueue+. Note that, if the default queue is changed, the default +queue_consumer+ is not going to be initialized, it is up to the new queue implementation to handle starting and shutting down its own consumer(s).
-* +config.queue_consumer+ configures a different consumer implementation for the default queue. Defaults to +Rails::Queueing::ThreadedConsumer+.
+* +config.queue_consumer+ configures a different consumer implementation for the default queue. Defaults to +ActiveSupport::ThreadedQueueConsumer+.
* +config.reload_classes_only_on_change+ enables or disables reloading of classes only when tracked files change. By default tracks everything on autoload paths and is set to true. If +config.cache_classes+ is true, this option is ignored.