module ActionCable::Channel::PeriodicTimers

def start_periodic_timers

def start_periodic_timers
  self.class.periodic_timers.each do |callback, options|
    active_periodic_timers << start_periodic_timer(callback, every: options.fetch(:every))
  end
end