diff options
-rw-r--r-- | activejob/lib/active_job/base.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activejob/lib/active_job/base.rb b/activejob/lib/active_job/base.rb index f926d8fad5..913e221d89 100644 --- a/activejob/lib/active_job/base.rb +++ b/activejob/lib/active_job/base.rb @@ -44,6 +44,10 @@ module ActiveJob #:nodoc: # # More information can be found in ActiveJob::Core::ClassMethods#set # + # A job can also be processed synchronously: + # + # ProcessPhotoJob.perform_now(photo) + # # == Exceptions # # * DeserializationError - Error class for deserialization errors. |