# 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