module SidekiqScheduler::RedisManager

def self.set_job_next_time(name, next_time)

Parameters:
  • next_time (String) -- The next time the job has to be executed
  • name (String) -- The name of the job
def self.set_job_next_time(name, next_time)
  hset(next_times_key, name, String(next_time))
end