File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 3
3
module ActiveJob
4
4
# = Active Job Continuable
5
5
#
6
+ # The Continuable module provides the ability to track the progress of your
7
+ # jobs, and continue from where they left off if interrupted.
8
+ #
6
9
# Mix ActiveJob::Continuable into your job to enable continuations.
7
10
#
8
- # See +ActiveJob::Continuation+ for usage. # The Continuable module provides the ability to track the progress of your jobs,
9
- # and continue from where they left off if interrupted.
11
+ # See {ActiveJob::Continuation}[rdoc-ref:ActiveJob::Continuation] for usage.
10
12
#
11
13
module Continuable
12
14
extend ActiveSupport ::Concern
Original file line number Diff line number Diff line change @@ -161,11 +161,11 @@ module ActiveJob
161
161
# === Configuration
162
162
#
163
163
# Continuable jobs have several configuration options:
164
- # * :max_resumptions</tt> - The maximum number of times a job can be resumed. Defaults to +nil+ which means
164
+ # * <tt> :max_resumptions</tt> - The maximum number of times a job can be resumed. Defaults to +nil+ which means
165
165
# unlimited resumptions.
166
166
# * <tt>:resume_options</tt> - Options to pass to +retry_job+ when resuming the job.
167
- # Defaults to + { wait: 5.seconds }+ .
168
- # See + ActiveJob::Exceptions#retry_job+ for available options.
167
+ # Defaults to <tt> { wait: 5.seconds }</tt> .
168
+ # See { ActiveJob::Exceptions#retry_job}[rdoc-ref:ActiveJob::Exceptions#retry_job] for available options.
169
169
# * <tt>:resume_errors_after_advancing</tt> - Whether to resume errors after advancing the continuation.
170
170
# Defaults to +true+.
171
171
class Continuation
You can’t perform that action at this time.
0 commit comments