class Rufus::Scheduler::AtJob

Public Class Methods

new(scheduler, time, opts, block) click to toggle source
Calls superclass method Rufus::Scheduler::Job.new
# File lib/rufus/scheduler/jobs.rb, line 366
def initialize(scheduler, time, opts, block)

  super(scheduler, time, opts, block)

  @next_time =
    opts[:_t] || Rufus::Scheduler.parse_at(time, opts)
end