命名空间
方法
实例公有方法
connection_identifier() 链接
返回一个单一的连接标识符,它将所有已注册标识符的值组合成一个单一的 gid。
来源: 显示 | 在 GitHub 上
# File actioncable/lib/action_cable/connection/identification.rb, line 29 def connection_identifier unless defined? @connection_identifier @connection_identifier = connection_gid identifiers.filter_map { |id| instance_variable_get("@#{id}") } end @connection_identifier end