跳到内容 跳到搜索
方法

实例公共方法

identified_by(*identifiers)

将一个键标记为连接标识符索引,之后可以用来再次找到特定的连接。常见的标识符是 current_user 和 current_account,但实际上可以是任何东西。

请注意,任何被标记为标识符的东西都会自动在从连接创建的任何频道实例上创建同名委托。

# File actioncable/lib/action_cable/connection/identification.rb, line 21
def identified_by(*identifiers)
  Array(identifiers).each { |identifier| attr_accessor identifier }
  self.identifiers += identifiers
end