Flowdock
method

start_periodic_timer

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: PeriodicTimers
start_periodic_timer(callback, every:) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actioncable/lib/action_cable/channel/periodic_timers.rb, line 65
        def start_periodic_timer(callback, every))
          connection.server.event_loop.timer every do
            connection.worker_pool.async_exec self, connection: connection, &callback
          end
        end
Register or log in to add new notes.