diff options
-rw-r--r-- | activejob/lib/active_job/base.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activejob/lib/active_job/base.rb b/activejob/lib/active_job/base.rb index 913e221d89..0c4a29090e 100644 --- a/activejob/lib/active_job/base.rb +++ b/activejob/lib/active_job/base.rb @@ -34,17 +34,17 @@ module ActiveJob #:nodoc: # Records that are passed in are serialized/deserialized using Global # Id. More information can be found in Arguments. # - # To queue a job to be processed asynchronously immediately: + # To enqueue a job to be performed as soon the queueing system is free: # # ProcessPhotoJob.perform_later(photo) # - # To queue a job to be processed at some point in the future: + # To enqueue a job to be processed at some point in the future: # # ProcessPhotoJob.set(wait_until: Date.tomorrow.noon).perform_later(photo) # # More information can be found in ActiveJob::Core::ClassMethods#set # - # A job can also be processed synchronously: + # A job can also be processed immediately without sending to the queue: # # ProcessPhotoJob.perform_now(photo) # |