Class: CanvasSync::JobBatches::SerialBatchJob
- Defined in:
- lib/canvas_sync/job_batches/jobs/serial_batch_job.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.make_batch(sub_jobs, **kwargs, &blk) ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/canvas_sync/job_batches/jobs/serial_batch_job.rb', line 6 def self.make_batch(sub_jobs, **kwargs, &blk) ManagedBatchJob.make_batch( sub_jobs, **kwargs, ordered: true, concurrency: false, desc_prefix: 'SerialBatchJob: ', &blk ) end |
Instance Method Details
#perform(sub_jobs, **kwargs) ⇒ Object
17 18 19 |
# File 'lib/canvas_sync/job_batches/jobs/serial_batch_job.rb', line 17 def perform(sub_jobs, **kwargs) self.class.make_batch(sub_jobs, **kwargs) end |