Flowdock
method

delegate_connection_identifiers

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Base
delegate_connection_identifiers() 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/base.rb, line 248
        def delegate_connection_identifiers
          connection.identifiers.each do |identifier|
            define_singleton_method(identifier) do
              connection.send(identifier)
            end
          end
        end
Register or log in to add new notes.