module ActionCable::Connection::Identification

Public Instance Methods

connection_identifier() Show source
# File actioncable/lib/action_cable/connection/identification.rb, line 27
def connection_identifier
  unless defined? @connection_identifier
    @connection_identifier = connection_gid identifiers.map { |id| instance_variable_get("@#{id}") }.compact
  end

  @connection_identifier
end

Return a single connection identifier that combines the value of all the registered identifiers into a single gid.

© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.