Class: Rufus::Scheduler::CronJobQueue
- Defined in:
- lib/rufus/sc/jobqueues.rb
Overview
Tracking cron jobs.
Constant Summary
Constants inherited from JobQueue
Instance Method Summary collapse
- #<<(job) ⇒ Object
-
#initialize ⇒ CronJobQueue
constructor
A new instance of CronJobQueue.
- #trigger_matching_jobs ⇒ Object
Methods inherited from JobQueue
#select, #size, #to_h, #unschedule
Constructor Details
#initialize ⇒ CronJobQueue
Returns a new instance of CronJobQueue.
129 130 131 132 133 |
# File 'lib/rufus/sc/jobqueues.rb', line 129 def initialize super @last_cron_second = nil end |
Instance Method Details
#<<(job) ⇒ Object
149 150 151 152 153 154 155 |
# File 'lib/rufus/sc/jobqueues.rb', line 149 def << (job) @mutex.synchronize do delete(job.job_id) @jobs << job end end |
#trigger_matching_jobs ⇒ Object
135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/rufus/sc/jobqueues.rb', line 135 def trigger_matching_jobs now = Time.now return if now.sec == @last_cron_second @last_cron_second = now.sec # # ensuring the crons are checked within 1 second (not 1.2 second) jobs = @mutex.synchronize { @jobs.dup } jobs.each { |job| job.trigger_if_matches(now) } end |