diff options
author | Mohit Natoo <mohitnatoo@gmail.com> | 2016-04-22 14:46:31 +0530 |
---|---|---|
committer | Mohit Natoo <mohitnatoo@gmail.com> | 2016-04-22 15:37:20 +0530 |
commit | 23f472ae7cade878eee3ae2b3910166519ccfd24 (patch) | |
tree | cdfd1f16ee53de31e689e557e77ce2b208e8c4a5 /activejob/lib | |
parent | 406a2380b88714387e015efcc0696bd2b20f49f1 (diff) | |
download | rails-23f472ae7cade878eee3ae2b3910166519ccfd24.tar.gz rails-23f472ae7cade878eee3ae2b3910166519ccfd24.tar.bz2 rails-23f472ae7cade878eee3ae2b3910166519ccfd24.zip |
- [ci skip] Active Job Async doesn't support to Async feature as per it's definition.
- [ci skip] Active Job Async doesn't support to Async feature as per it's definition.
- [ci skip] Active Job Async doesn't support to Async feature as per it's definition.
- [ci skip] Active Job Async doesn't support to Async feature as per it's definition.
- [ci skip] Active Job Async doesn't support to Async feature as per it's definition.
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/queue_adapters.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activejob/lib/active_job/queue_adapters.rb b/activejob/lib/active_job/queue_adapters.rb index 2c5039ef4d..71154d8785 100644 --- a/activejob/lib/active_job/queue_adapters.rb +++ b/activejob/lib/active_job/queue_adapters.rb @@ -33,7 +33,8 @@ module ActiveJob # # ==== Async # - # Yes: The Queue Adapter runs the jobs in a separate or forked process. + # Yes: The Queue Adapter has the ability to run the job in a non-blocking manner. + # It either runs on a separate or forked process, or on a different thread. # # No: The job is run in the same process. # |