Module: ActionCable::Connection::Identification

Extended by:
ActiveSupport::Concern
Included in:
Base, RemoteConnections::RemoteConnection
Defined in:
actioncable/lib/action_cable/connection/identification.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Methods included from ActiveSupport::Concern

append_features, class_methods, extended, included, prepend_features, prepended

Instance Method Details

#connection_identifierObject

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



27
28
29
30
31
32
33
# File 'actioncable/lib/action_cable/connection/identification.rb', line 27

def connection_identifier
  unless defined? @connection_identifier
    @connection_identifier = connection_gid identifiers.filter_map { |id| instance_variable_get("@#{id}") }
  end

  @connection_identifier
end