class Rufus::Scheduler::JobQueue

def <<(job)


Adds this job to the map.
def <<(job)
  @mutex.synchronize do
    delete(job.job_id)
    @jobs << job
    @jobs.sort! { |j0, j1| j0.at <=> j1.at }
  end
end