instance method
start_periodic_timers
Ruby on Rails 5.2.8.1
Since v5.2.8.1 PrivateSignature
start_periodic_timers()
No documentation comment.
Source
# File actioncable/lib/action_cable/channel/periodic_timers.rb, line 60
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
Defined in actioncable/lib/action_cable/channel/periodic_timers.rb line 60
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionCable::Channel::PeriodicTimers