Flowdock
method

unsubscribe_from_internal_channel

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: InternalChannel
unsubscribe_from_internal_channel() 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/connection/internal_channel.rb, line 25
        def unsubscribe_from_internal_channel
          if @_internal_subscriptions.present?
            @_internal_subscriptions.each { |channel, callback| server.event_loop.post { pubsub.unsubscribe(channel, callback) } }
          end
        end
Register or log in to add new notes.