Tracking cron jobs.
# File lib/rufus/sc/jobqueues.rb, line 149 def << (job) @mutex.synchronize do delete(job.job_id) @jobs << job end end
# 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
Generated with the Darkfish Rdoc Generator 2.