method

delegate_connection_identifiers

rails latest stable - Class: ActionCable::Channel::Base
delegate_connection_identifiers()
private

No documentation available.

# File actioncable/lib/action_cable/channel/base.rb, line 253
        def delegate_connection_identifiers
          connection.identifiers.each do |identifier|
            define_singleton_method(identifier) do
              connection.send(identifier)
            end
          end
        end