diff options
author | Mohit Natoo <mohitnatoo@gmail.com> | 2018-08-10 02:02:58 +0530 |
---|---|---|
committer | Mohit Natoo <mohitnatoo@gmail.com> | 2018-08-10 02:02:58 +0530 |
commit | 2d57f2f2f25daf8d1292c6e0b20746d0cc924517 (patch) | |
tree | 9b1e4549ae95edf92b518a90720fd5278da4b0fe /activejob | |
parent | 3000c1490565b3a21376d6444cb6fe24dfe4e383 (diff) | |
download | rails-2d57f2f2f25daf8d1292c6e0b20746d0cc924517.tar.gz rails-2d57f2f2f25daf8d1292c6e0b20746d0cc924517.tar.bz2 rails-2d57f2f2f25daf8d1292c6e0b20746d0cc924517.zip |
Documentation for queue_adapter_name method in ActiveJob::QueueAdapter [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/queue_adapter.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activejob/lib/active_job/queue_adapter.rb b/activejob/lib/active_job/queue_adapter.rb index 006a683b85..954bfd1dd1 100644 --- a/activejob/lib/active_job/queue_adapter.rb +++ b/activejob/lib/active_job/queue_adapter.rb @@ -22,6 +22,8 @@ module ActiveJob _queue_adapter end + # Returns string denoting the name of the configured queue adapter. + # By default returns +"async"+. def queue_adapter_name _queue_adapter_name end |