class SidekiqScheduler::Manager


from Redis onto the work queues
manages the scheduled jobs pushed messages
The delayed job router in the system. This

def initialize(options)

def initialize(options)
  Sidekiq::Scheduler.enabled = options[:enabled]
  Sidekiq::Scheduler.dynamic = options[:dynamic]
  Sidekiq::Scheduler.listened_queues_only = options[:listened_queues_only]
  Sidekiq.schedule = options[:schedule] || {}
end

def reset

def reset
  clear_scheduled_work
end

def start

def start
  Sidekiq::Scheduler.load_schedule!
end

def stop

def stop
  Sidekiq::Scheduler.clear_schedule!
end