diff options
| author | Vipul A M <vipulnsward@gmail.com> | 2016-04-22 15:35:35 +0530 |
|---|---|---|
| committer | Vipul A M <vipulnsward@gmail.com> | 2016-04-22 15:35:35 +0530 |
| commit | 8e7715ae31dba383f1c0497adf1b85c7a99ef5da (patch) | |
| tree | 4f885401b3fc0a9093b6a9ed78d42f017b294e35 | |
| parent | 2700a1aa43201a1d4cfbe4a8141291ef4b7e7653 (diff) | |
| parent | 23f472ae7cade878eee3ae2b3910166519ccfd24 (diff) | |
| download | rails-8e7715ae31dba383f1c0497adf1b85c7a99ef5da.tar.gz rails-8e7715ae31dba383f1c0497adf1b85c7a99ef5da.tar.bz2 rails-8e7715ae31dba383f1c0497adf1b85c7a99ef5da.zip | |
Change definition of what async means for an Active Job Job [ci skip]
Change definition of what async means for an Active Job Job [ci skip]
| -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. # |
