Class: Cloudtasker::UniqueJob::Lock::UntilExecuting

Inherits:
BaseLock
  • Object
show all
Defined in:
lib/cloudtasker/unique_job/lock/until_executing.rb

Overview

Conflict if any other job with the same args is scheduled while the first job is pending.

Instance Attribute Summary

Attributes inherited from BaseLock

#job

Instance Method Summary collapse

Methods inherited from BaseLock

#conflict_instance, #default_conflict_strategy, #initialize, #options

Constructor Details

This class inherits a constructor from Cloudtasker::UniqueJob::Lock::BaseLock

Instance Method Details

#executeObject

Release the lock and perform the job.



23
24
25
26
# File 'lib/cloudtasker/unique_job/lock/until_executing.rb', line 23

def execute
  job.unlock!
  yield
end

#scheduleObject

Acquire a lock for the job and trigger a conflict if the lock could not be acquired.



13
14
15
16
17
18
# File 'lib/cloudtasker/unique_job/lock/until_executing.rb', line 13

def schedule
  job.lock!
  yield
rescue LockError
  conflict_instance.on_schedule { yield }
end