Flowdock
method

ensure_listener_running

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: Listener
ensure_listener_running() 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/subscription_adapter/redis.rb, line 141
            def ensure_listener_running
              @thread ||= Thread.new do
                Thread.current.abort_on_exception = true

                conn = @adapter.redis_connection_for_subscriptions
                listen conn
              end
            end
Register or log in to add new notes.